/* Custom theme overrides */

/* Force light theme regardless of system preferences */
:root {
  color-scheme: light !important;
  --color-base-100: oklch(100% 0 0) !important;
  --color-base-200: oklch(98% 0 0) !important;
  --color-base-300: oklch(95% 0 0) !important;
  --color-base-content: oklch(21% 0.006 285.885) !important;
  --color-primary: oklch(45% 0.24 277.023) !important;
  --color-primary-content: oklch(93% 0.034 272.788) !important;
  --color-secondary: oklch(65% 0.241 354.308) !important;
  --color-secondary-content: oklch(94% 0.028 342.258) !important;
  --color-accent: oklch(77% 0.152 181.912) !important;
  --color-accent-content: oklch(38% 0.063 188.416) !important;
  --color-neutral: oklch(14% 0.005 285.823) !important;
  --color-neutral-content: oklch(92% 0.004 286.32) !important;
  --color-info: oklch(74% 0.16 232.661) !important;
  --color-info-content: oklch(29% 0.066 243.157) !important;
  --color-success: oklch(76% 0.177 163.223) !important;
  --color-success-content: oklch(29% 0.074 164.173) !important;
  --color-warning: oklch(82% 0.162 83.688) !important;
  --color-warning-content: oklch(30% 0.084 82.746) !important;
  --color-error: oklch(67% 0.231 22.18) !important;
  --color-error-content: oklch(95% 0.047 15.34) !important;
}

/* Disable any dark mode media queries */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light !important;
  }
}