:root {
  /* LIGHT THEME TOKENS */
  --bg-body: #f0f2f5;
  --bg-card: #ffffff;
  --text-main: #343a40;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --nav-bg: #ffffff;
  --accent-primary: #11cdef;
}

[data-theme='dark'] {
  /* DARK THEME TOKENS */
  --bg-body: #1a1c1e;
  --bg-card: #2a2d30;
  --text-main: #e9ecef;
  --text-muted: #adb5bd;
  --border-color: #3f4448;
  --nav-bg: #2a2d30;
  --accent-primary: #11cdef;
}

body {
  background-color: var(--bg-body) !important;
  color: var(--text-main) !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.card {
  background-color: var(--bg-card) !important;
  border-color: var(--border-color) !important;
  transition: background-color 0.3s ease;
}

.text-muted {
  color: var(--text-muted) !important;
}

.nav-header {
  background-color: var(--nav-bg) !important;
}

/* OVERRIDES FOR COMMON TEMPLATE CLASSES */
[data-theme='dark'] .form-control {
  background-color: #343a40;
  border-color: #495057;
  color: #f8f9fa;
}

[data-theme='dark'] .input-group-text {
  background-color: #495057;
  border-color: #495057;
  color: #f8f9fa;
}

[data-theme='dark'] .dropdown-menu {
  background-color: #2a2d30;
  border-color: #3f4448;
}

[data-theme='dark'] .dropdown-item {
  color: #e9ecef;
}

[data-theme='dark'] .dropdown-item:hover {
  background-color: #3f4448;
}
