:root {
  --color-brand: 5 150 105;
  --bg-app: 248 250 252;
  --bg-surface: 255 255 255;
  --bg-surface-highlight: 241 245 249;
  --text-primary: 15 23 42;
  --text-secondary: 100 116 139;
  --border-base: 226 232 240;
}

.dark {
  --color-brand: 16 185 129;
  --bg-app: 2 6 23;
  --bg-surface: 15 23 42;
  --bg-surface-highlight: 30 41 59;
  --text-primary: 248 250 252;
  --text-secondary: 148 163 184;
  --border-base: 30 41 59;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
  background: #475569;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

body {
  background-color: rgb(var(--bg-app));
  color: rgb(var(--text-primary));
}
