/* POC-IT daisyUI 5 Themes */

/* 1. Pocit Light Theme Definition */
:root:has(input.theme-controller[value=pocit-light]:checked),
[data-theme="pocit-light"] {
  color-scheme: light;
  --color-primary: oklch(65% 0.15 264);
  --color-primary-content: oklch(98% 0.02 264);
  --color-secondary: oklch(68% 0.18 296);
  --color-secondary-content: oklch(98% 0.02 296);
  --color-accent: oklch(70% 0.14 195);
  --color-accent-content: oklch(98% 0.02 195);
  --color-neutral: oklch(32% 0.02 264);
  --color-neutral-content: oklch(95% 0.01 264);
  --color-base-100: oklch(99% 0.005 264);
  --color-base-200: oklch(96% 0.01 264);
  --color-base-300: oklch(92% 0.015 264);
  --color-base-content: oklch(25% 0.02 264);
  --color-info: oklch(70% 0.12 220);
  --color-info-content: oklch(98% 0.02 220);
  --color-success: oklch(65% 0.15 142);
  --color-success-content: oklch(98% 0.02 142);
  --color-warning: oklch(75% 0.15 85);
  --color-warning-content: oklch(25% 0.02 85);
  --color-error: oklch(65% 0.20 25);
  --color-error-content: oklch(98% 0.02 25);
  --radius-selector: 0.75rem;
  --radius-field: 0.5rem;
  --radius-box: 0.75rem;
  --size-selector: 0.25rem;
  --size-field: 0.25rem;
  --border: 1px;
  --depth: 0;
  --noise: 0;
}

/* 2. Pocit Dark Theme Definition (Revised & Cleaned) */
:root:has(input.theme-controller[value=pocit-dark]:checked),
[data-theme="pocit-dark"] {
  color-scheme: dark;
   --color-base-100: oklch(14% 0 0);
  --color-base-200: oklch(20% 0 0);
  --color-base-300: oklch(44.872% 0.0039 16.583);
  --color-base-content: oklch(97% 0 0); 

  /* --- MODIFIED FOR BETTER CONTRAST --- */
  --color-primary: oklch(62% 0.15 264);
  --color-primary-content: oklch(95% 0.02 264);
  --color-secondary: oklch(65% 0.18 296);
  --color-secondary-content: oklch(95% 0.02 296);
  --color-accent: oklch(68% 0.14 195);
  --color-accent-content: oklch(95% 0.02 195);
  /* ------------------------------------ */

  --color-neutral: oklch(25% 0.02 264);
  --color-neutral-content: oklch(85% 0.01 264);

  /* --- MODIFIED FOR BETTER CONTRAST --- */
  --color-info: oklch(65% 0.12 220);
  --color-info-content: oklch(95% 0.02 220);
  --color-success: oklch(62% 0.15 142);
  --color-success-content: oklch(95% 0.02 142);
  --color-warning: oklch(70% 0.15 85);
  --color-warning-content: oklch(20% 0.02 85);
  --color-error: oklch(62% 0.20 25);
  --color-error-content: oklch(95% 0.02 25);
  /* ------------------------------------ */

  --radius-selector: 0.75rem;
  --radius-field: 0.5rem;
  --radius-box: 0.75rem;
  --size-selector: 0.25rem;
  --size-field: 0.25rem;
  --border: 1px;
  --depth: 1;
  --noise: 0;
}