/* Brand theme override — deep navy in place of the default bright SaaS blue.
   Two layers, because the compiled bundle mixes both:
   1) Tailwind's `--color-blue-*` tokens (real CSS vars, safe to redefine here).
   2) A hardcoded literal #4F8CFF used via Tailwind arbitrary-value classes
      (e.g. text-[#4F8CFF]) for the logo/sidebar/buttons — those don't read a
      variable, so index-BIMsjJYc.css itself was edited to swap that literal
      hex for the matching navy (#285094) instead.
   Every other color family (status badges, category tags, chart colors,
   grays, the destructive red) is left untouched on purpose. */
:root {
  --color-blue-50: oklch(97.5% .012 260);
  --color-blue-100: oklch(94% .025 260);
  --color-blue-200: oklch(87% .045 260);
  --color-blue-300: oklch(78% .07 260);
  --color-blue-400: oklch(65% .095 260);
  --color-blue-500: oklch(53% .115 260);
  --color-blue-600: oklch(44% .12 260);
  --color-blue-700: oklch(37% .11 260);
  --color-blue-800: oklch(30% .1 260);
  --color-blue-900: oklch(24% .075 260);
}
