@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  font-family: Arial, Helvetica, sans-serif;
}

@layer base {
  :root {
    --background: 0 0% 100%; /* White */
    --foreground: 222.2 84% 4.9%; /* Dark Blue for text */
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --primary: 211 81% 10%; /* #05172f */
    --primary-foreground: 0 0% 98%; /* White text on primary */
    --secondary: 210 40% 96.1%; /* Light gray */
    --secondary-foreground: 222.2 47.4% 11.2%; /* Dark Blue */
    --muted: 210 40% 96.1%; /* Light gray */
    --muted-foreground: 215.4 16.3% 46.9%; /* Muted Blue/Gray */
    --accent: 210 40% 96.1%; /* Light gray */
    --accent-foreground: 222.2 47.4% 11.2%; /* Dark Blue */
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;
    --chart-1: 211 81% 10%; /* #05172f */
    --chart-2: 206 25% 23%; /* #2d3d4c */
    --chart-3: 75 4% 17%; /* #2f2f2b */
    --chart-4: 210 2% 32%; /* #525453 */
    --chart-5: 240 70% 8%; /* #0d0d15 */
    --radius: 0.5rem;
    --sidebar-background: 201 48% 13.5%;
    --sidebar-foreground: 0 0% 85%;
    --sidebar-primary: 31 45% 65%;
    --sidebar-primary-foreground: 201 48% 13.5%;
    --sidebar-accent: 201 48% 20%;
    --sidebar-accent-foreground: 0 0% 98%;
    --sidebar-border: 201 48% 20%;
    --sidebar-ring: 31 45% 65%;
  }
  .dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;
    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;
    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;
    --primary: 210 40% 98%;
    --primary-foreground: 222.2 47.4% 11.2%;
    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;
    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 212.7 26.8% 83.9%;
    --chart-1: 206 25% 43%;
    --chart-2: 210 2% 52%;
    --chart-3: 211 81% 30%;
    --chart-4: 75 4% 37%;
    --chart-5: 0 0% 98%;
    --sidebar-background: 240 70% 8%;
    --sidebar-foreground: 0 0% 85%;
    --sidebar-primary: 206 25% 43%;
    --sidebar-primary-foreground: 240 70% 8%;
    --sidebar-accent: 211 81% 10%;
    --sidebar-accent-foreground: 0 0% 98%;
    --sidebar-border: 211 81% 10%;
    --sidebar-ring: 206 25% 43%;
  }
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
  }
}
