/*
 * Corporate theme for Chainlit (shadcn CSS variables, HSL format)
 * Derived from DaisyUI corporate OKLCH palette:
 *   primary   oklch(58% 0.158 241.966) → #0082CE → hsl(202 100% 40%)
 *   secondary oklch(55% 0.046 257.417) → #61738D → hsl(216 19% 47%)
 *   accent    oklch(60% 0.118 184.704) → #009689 → hsl(175 100% 29%)
 *   base-100  oklch(100% 0 0)          → #FFFFFF → hsl(0 0% 100%)
 *   base-200  oklch(93% 0 0)           → #E8E8E8 → hsl(0 0% 91%)
 *   base-300  oklch(86% 0 0)           → #D1D1D1 → hsl(0 0% 82%)
 *   base-content oklch(22.389% 0.031 278.072) → #181A2A → hsl(233 27% 13%)
 */
:root {
  --background: 0 0% 100%;
  --foreground: 233 27% 13%;
  --card: 0 0% 100%;
  --card-foreground: 233 27% 13%;
  --popover: 0 0% 100%;
  --popover-foreground: 233 27% 13%;
  --primary: 202 100% 40%;
  --primary-foreground: 0 0% 100%;
  --secondary: 216 19% 47%;
  --secondary-foreground: 0 0% 100%;
  --muted: 0 0% 91%;
  --muted-foreground: 0 0% 45%;
  --accent: 175 100% 29%;
  --accent-foreground: 0 0% 100%;
  --destructive: 358 100% 69%;
  --destructive-foreground: 0 0% 0%;
  --border: 0 0% 82%;
  --input: 0 0% 82%;
  --ring: 202 100% 40%;
  --radius: 0.25rem;

  /* Sidebar overrides (Chainlit-specific shadcn variables) */
  --sidebar-background: 0 0% 91%;
  --sidebar-foreground: 233 27% 13%;
  --sidebar-primary: 202 100% 40%;
  --sidebar-primary-foreground: 0 0% 100%;
  --sidebar-accent: 0 0% 82%;
  --sidebar-accent-foreground: 233 27% 13%;
  --sidebar-border: 0 0% 82%;
  --sidebar-ring: 202 100% 40%;
}
