/**
 * Hezdeb College Ibadan | Portal – brand overrides
 * Primary: #d62921 | Secondary: #fef99b
 */
:root {
  /* Primary (red) – main brand #d62921 */
  --primary-50: #fef2f2;
  --primary-100: #fde0de;
  --primary-200: #f9b8b4;
  --primary-300: #f28c86;
  --primary-400: #e85d55;
  --primary-500: #dd3d33;
  --primary-600: #d62921;
  --primary-700: #b8221b;
  --primary-800: #9a1c16;
  --primary-900: #7c1712;
  /* Secondary (yellow) – accent #fef99b */
  --brand-secondary: #fef99b;
}

/* Optional: use secondary for highlights if needed */
.bg-brand-secondary { background-color: var(--brand-secondary) !important; }
.text-brand-secondary { color: var(--brand-secondary) !important; }

/* Buttons: brand primary (red) */
.btn-brand, .btn-brand:hover { background-color: var(--primary-600) !important; border-color: var(--primary-600) !important; color: #fff !important; }
.btn-brand:hover { filter: brightness(1.05); }

/* Sidebar: centered logo */
.sidebar-logo-wrapper { min-height: 4.5rem; }
.sidebar-logo-wrapper .sidebar-logo { justify-content: center !important; flex: 1; }
.sidebar-logo-wrapper .sidebar-toggle { margin-inline-end: 0.5rem; }

/* Sidebar: logout as menu item (match .sidebar-menu li a) */
.sidebar-menu li .sidebar-logout-form {
  margin: 0;
  padding: 0;
}
.sidebar-menu li .sidebar-logout-form button {
  padding: 0.625rem 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--text-secondary-light);
  border-radius: 8px;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  gap: 0;
}
.sidebar-menu li .sidebar-logout-form button:hover {
  color: var(--primary-600);
}
.sidebar-menu li .sidebar-logout-form button i {
  line-height: 1.2;
  width: 24px;
  margin-inline-end: 0.75rem;
  font-size: 1.375rem;
}
.sidebar.active .sidebar-menu li .sidebar-logout-form button span {
  display: none;
}

/* Manage / view results table (admin + staff): Total vs Grand Total column tint */
.table-results-manage thead th.col-total-mgmt,
.table-results-manage tbody td.col-total-mgmt {
  background-color: #e8f2fc !important;
}
.table-results-manage thead th.col-grand-total-mgmt,
.table-results-manage tbody td.col-grand-total-mgmt {
  background-color: #fceee8 !important;
}

[data-theme="dark"] .table-results-manage thead th.col-total-mgmt,
[data-theme="dark"] .table-results-manage tbody td.col-total-mgmt {
  background-color: #1a3344 !important;
}
[data-theme="dark"] .table-results-manage thead th.col-grand-total-mgmt,
[data-theme="dark"] .table-results-manage tbody td.col-grand-total-mgmt {
  background-color: #3d2820 !important;
}
