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

@layer base {
  :root {
    --background: 174 62% 47%;
    --foreground: 0 0% 100%;
    --card: 0 0% 100%;
    --card-foreground: 200 20% 20%;
    --popover: 0 0% 100%;
    --popover-foreground: 200 20% 20%;
    --primary: 174 62% 35%;
    --primary-foreground: 0 0% 100%;
    --secondary: 174 40% 90%;
    --secondary-foreground: 174 62% 25%;
    --muted: 174 20% 90%;
    --muted-foreground: 200 10% 40%;
    --accent: 174 50% 85%;
    --accent-foreground: 174 62% 25%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 100%;
    --border: 174 30% 70%;
    --input: 0 0% 100%;
    --ring: 174 62% 35%;
    --radius: 0.5rem;
    --chart-1: 174 70% 50%;
    --chart-2: 174 60% 40%;
    --chart-3: 174 50% 30%;
    --chart-4: 174 40% 60%;
    --chart-5: 174 80% 45%;
    --sidebar: 174 62% 42%;
    --sidebar-foreground: 0 0% 100%;
    --sidebar-primary: 174 62% 35%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 174 50% 50%;
    --sidebar-accent-foreground: 0 0% 100%;
    --sidebar-border: 174 40% 55%;
    --sidebar-ring: 174 62% 35%;
    
    /* Custom turquoise colors */
    --turquoise: 174 62% 47%;
    --turquoise-dark: 174 62% 35%;
    --turquoise-light: 174 50% 85%;
  }

  .dark {
    --background: 174 40% 12%;
    --foreground: 0 0% 98%;
    --card: 174 30% 15%;
    --card-foreground: 0 0% 98%;
    --popover: 174 30% 15%;
    --popover-foreground: 0 0% 98%;
    --primary: 174 60% 50%;
    --primary-foreground: 0 0% 100%;
    --secondary: 174 30% 20%;
    --secondary-foreground: 0 0% 98%;
    --muted: 174 20% 20%;
    --muted-foreground: 174 20% 70%;
    --accent: 174 30% 25%;
    --accent-foreground: 0 0% 98%;
    --destructive: 0 72.2% 50.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 174 30% 25%;
    --input: 174 20% 25%;
    --ring: 174 60% 50%;
    --chart-1: 174 70% 55%;
    --chart-2: 174 60% 45%;
    --chart-3: 174 50% 35%;
    --chart-4: 174 40% 65%;
    --chart-5: 174 80% 50%;
    --sidebar: 174 30% 15%;
    --sidebar-foreground: 0 0% 98%;
    --sidebar-primary: 174 60% 50%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 174 30% 25%;
    --sidebar-accent-foreground: 0 0% 98%;
    --sidebar-border: 174 30% 25%;
    --sidebar-ring: 174 60% 50%;
    
    --turquoise: 174 62% 47%;
    --turquoise-dark: 174 62% 35%;
    --turquoise-light: 174 40% 25%;
  }
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground antialiased;
    font-family: "Inter Variable", "Inter", system-ui, sans-serif;
  }

  button:not([disabled]),
  [role="button"]:not([disabled]) {
    cursor: pointer;
  }
}
