:root {
  --primary: #00d124;
  --primary-hover: #00b51f;
  --primary-contrast: #ffffff;
  --accent: #234289;
  --accent-hover: #1a3269;
  --accent-contrast: #ffffff;
  --success: #006611;
  --danger: #c62828;
  --background: #f7fdf4;
  --surface: #ffffff;
  --surface-alt: #e2ffd6;
  --border: #d3e8ca;
  --text: #020100;
  --text-muted: #5a6b56;
  --toolbar-bg: #ffffff;
  --toolbar-text: #020100;
  --footer-bg: #020100;
  --footer-text: #e2ffd6;
  --card-shadow: rgba(2, 1, 0, 0.08);
  --overlay: rgba(2, 1, 0, 0.55);
  --input-bg: #ffffff;
  --badge-bg: #234289;
  --badge-text: #ffffff;
  color-scheme: light;
}

[data-theme="dark"] {
  --primary: #00d124;
  --primary-hover: #2ee649;
  --primary-contrast: #020100;
  --accent: #6b8fd8;
  --accent-hover: #8aa8e6;
  --accent-contrast: #020100;
  --success: #33cc55;
  --danger: #ef5350;
  --background: #0c120a;
  --surface: #161d13;
  --surface-alt: #1d2a18;
  --border: #2c3a27;
  --text: #e2ffd6;
  --text-muted: #93a68c;
  --toolbar-bg: #111709;
  --toolbar-text: #e2ffd6;
  --footer-bg: #020100;
  --footer-text: #e2ffd6;
  --card-shadow: rgba(0, 0, 0, 0.5);
  --overlay: rgba(0, 0, 0, 0.7);
  --input-bg: #0c120a;
  --badge-bg: #234289;
  --badge-text: #ffffff;
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  [data-theme="auto"] {
    --primary: #00d124;
    --primary-hover: #2ee649;
    --primary-contrast: #020100;
    --accent: #6b8fd8;
    --accent-hover: #8aa8e6;
    --accent-contrast: #020100;
    --success: #33cc55;
    --danger: #ef5350;
    --background: #0c120a;
    --surface: #161d13;
    --surface-alt: #1d2a18;
    --border: #2c3a27;
    --text: #e2ffd6;
    --text-muted: #93a68c;
    --toolbar-bg: #111709;
    --toolbar-text: #e2ffd6;
    --footer-bg: #020100;
    --footer-text: #e2ffd6;
    --card-shadow: rgba(0, 0, 0, 0.5);
    --overlay: rgba(0, 0, 0, 0.7);
    --input-bg: #0c120a;
    --badge-bg: #234289;
    --badge-text: #ffffff;
    color-scheme: dark;
  }
}
