/* Always dark */
:root, [data-bs-theme="dark"]{
  --bs-body-bg: #0b0e13;
  --bs-body-color: #e9edf3;

  --bs-primary: #d61f26;         /* LSMD red */
  --bs-primary-rgb: 214,31,38;

  --bs-link-color: #ff4b55;
  --bs-link-hover-color: #ff6b72;

  --bs-border-color: rgba(255,255,255,.12);
  --bs-card-bg: #0f141c;
}

.navbar{ box-shadow: 0 6px 18px rgba(0,0,0,.35); }
.navbar-brand{ font-weight: 700; letter-spacing: .3px; }

.card{ border: 1px solid rgba(255,255,255,.08); }
.table td, .table th { vertical-align: middle; }

.table-dark{ --bs-table-bg: #0f141c; }
.table-striped>tbody>tr:nth-of-type(odd)>*{ --bs-table-bg-type: rgba(255,255,255,.03); }

.btn-primary{
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: #b8181e;
  --bs-btn-hover-border-color: #b8181e;
}

.badge.text-bg-primary{ background-color: var(--bs-primary) !important; }
