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

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

@layer base {
  :root {
    --background: 60 56% 91%;
    --foreground: 25 57% 15%;
    --card: 60 56% 95%;
    --card-foreground: 25 57% 15%;
    --popover: 60 56% 95%;
    --popover-foreground: 25 57% 15%;
    --primary: 120 25% 65%;
    --primary-foreground: 25 57% 10%;
    --secondary: 60 20% 85%;
    --secondary-foreground: 25 57% 15%;
    --muted: 60 20% 88%;
    --muted-foreground: 25 57% 35%;
    --accent: 25 57% 40%;
    --accent-foreground: 60 56% 98%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 60 20% 80%;
    --input: 60 20% 85%;
    --ring: 120 25% 65%;
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 0.5rem;
  }
  .dark {
    --background: 25 10% 10%;
    --foreground: 60 56% 91%;
    --card: 25 10% 12%;
    --card-foreground: 60 56% 91%;
    --popover: 25 10% 10%;
    --popover-foreground: 60 56% 91%;
    --primary: 120 25% 55%;
    --primary-foreground: 25 57% 10%;
    --secondary: 25 10% 20%;
    --secondary-foreground: 60 56% 91%;
    --muted: 25 10% 20%;
    --muted-foreground: 60 20% 70%;
    --accent: 25 57% 50%;
    --accent-foreground: 60 56% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 25 10% 25%;
    --input: 25 10% 25%;
    --ring: 120 25% 55%;
  }
}

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