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

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

@layer base {
  :root {
    --background: 0 0% 94%; /* #F0F0F0 Light Gray */
    --foreground: 0 0% 20%; /* #333333 Dark Gray */
    --card: 0 0% 100%;
    --card-foreground: 0 0% 20%; /* Adjusted for better contrast on white card */
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 20%; /* Adjusted for better contrast on white popover */
    --primary: 190 48% 65%; /* #7EC4CF Soft Blue */
    --primary-foreground: 0 0% 100%; /* White for contrast on soft blue */
    --secondary: 0 0% 90%; /* Slightly darker gray for secondary elements */
    --secondary-foreground: 0 0% 20%; /* Dark text on secondary */
    --muted: 0 0% 92%; /* Muted gray */
    --muted-foreground: 0 0% 40%; /* Darker muted text */
    --accent: 20 90% 52%; /* #F26419 Warm Coral */
    --accent-foreground: 0 0% 100%; /* White for contrast on coral */
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 85%; /* Slightly darker border for definition */
    --input: 0 0% 92%; /* Input background to match muted or secondary */
    --ring: 190 48% 55%; /* Ring color based on primary */
    --chart-1: 190 48% 65%; /* Primary */
    --chart-2: 20 90% 52%; /* Accent */
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 0.5rem;
    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
  .dark {
    /* Basic dark theme, can be expanded if needed */
    --background: 0 0% 10%;
    --foreground: 0 0% 95%;
    --card: 0 0% 12%;
    --card-foreground: 0 0% 95%;
    --popover: 0 0% 12%;
    --popover-foreground: 0 0% 95%;
    --primary: 190 48% 65%;
    --primary-foreground: 0 0% 10%;
    --secondary: 0 0% 18%;
    --secondary-foreground: 0 0% 95%;
    --muted: 0 0% 20%;
    --muted-foreground: 0 0% 60%;
    --accent: 20 90% 52%;
    --accent-foreground: 0 0% 10%;
    --destructive: 0 70% 50%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 25%;
    --input: 0 0% 22%;
    --ring: 190 48% 55%;
    --chart-1: 190 48% 65%;
    --chart-2: 20 90% 52%;
    --chart-3: 197 37% 44%; /* Adjusted for dark */
    --chart-4: 43 74% 46%; /* Adjusted for dark */
    --chart-5: 27 87% 47%; /* Adjusted for dark */
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
}

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