/* =============================================================================
   WOMBAT — Precision Command Center Theme
   A shared design system for all pages.
   ============================================================================= */

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  /* Colors — Core */
  --navy: #0f1a2e;
  --navy-light: #1a2740;
  --slate: #374151;
  --steel: #64748b;
  --silver: #94a3b8;
  --mist: #e2e8f0;
  --cloud: #f1f5f9;
  --white: #ffffff;

  /* Colors — Accent */
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-glow: rgba(37, 99, 235, 0.12);
  --blue-pale: #dbeafe;
  --emerald: #059669;
  --emerald-light: #d1fae5;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --red: #dc2626;
  --red-light: #fee2e2;

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 26, 46, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 26, 46, 0.08);
  --shadow-lg: 0 8px 30px rgba(15, 26, 46, 0.12);
  --shadow-glow: 0 0 0 3px var(--blue-glow);

  /* Radii */
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
}

/* =============================================
   GLOBAL RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background-color: var(--cloud);
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

a { color: var(--blue); transition: color 0.15s; }
a:hover { color: var(--navy); text-decoration: none; }

/* Bootstrap overrides */
.container-fluid { max-width: 100%; padding: 0 1rem; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background-color: var(--white) !important;
  border-bottom: 1px solid var(--mist);
  padding: 0.5rem 1rem;
}
.navbar-brand img { height: 36px; }
.navbar-brand span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}
.dropdown-menu {
  border: 1px solid var(--mist);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.35rem 0;
}
.dropdown-item {
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  color: var(--slate);
  transition: background 0.15s;
}
.dropdown-item:hover { background-color: var(--cloud); color: var(--navy); }
.dropdown-item.active, .dropdown-item:active {
  background-color: var(--blue);
  color: var(--white);
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel) !important;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--blue) !important; }

/* =============================================
   HEADINGS & PAGE HEADERS
   ============================================= */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
}

.page-header {
  padding: 1.5rem 0 0.75rem;
}
.page-header h1,
.page-header .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin: 0;
}
.page-header .subtitle {
  font-size: 0.85rem;
  color: var(--steel);
  margin-top: 0.15rem;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  margin-bottom: 1.25rem;
}
.card-header {
  background-color: var(--cloud);
  border-bottom: 1px solid var(--mist);
  padding: 0.75rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.card-body { padding: 1.15rem; }
.card-footer {
  background-color: var(--cloud);
  border-top: 1px solid var(--mist);
  padding: 0.75rem 1.15rem;
}

/* =============================================
   KPI CARDS
   ============================================= */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.kpi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  border: 1px solid var(--mist);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.kpi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
}
.kpi-card--blue::before { background: var(--blue); }
.kpi-card--red::before { background: var(--red); }
.kpi-card--amber::before { background: var(--amber); }
.kpi-card--emerald::before { background: var(--emerald); }
.kpi-card--navy::before { background: var(--navy); }

.kpi-card .kpi-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.kpi-card--blue .kpi-icon { background: var(--blue-glow); color: var(--blue); }
.kpi-card--red .kpi-icon { background: var(--red-light); color: var(--red); }
.kpi-card--amber .kpi-icon { background: var(--amber-light); color: var(--amber); }
.kpi-card--emerald .kpi-icon { background: var(--emerald-light); color: var(--emerald); }
.kpi-card--navy .kpi-icon { background: rgba(15,26,46,0.08); color: var(--navy); }

.kpi-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.15rem;
}
.kpi-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =============================================
   TABLES
   ============================================= */
.table-wrapper {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Override Bootstrap table */
.table {
  width: 100%;
  margin-bottom: 0;
}
.table thead th {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--steel);
  background: var(--cloud);
  padding: 0.65rem 0.6rem;
  border-bottom: 2px solid var(--mist);
  border-top: none;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  position: sticky;
  top: 0;
  z-index: 2;
}
.table thead th a {
  color: var(--steel);
  text-decoration: none;
  transition: color 0.15s;
}
.table thead th a:hover { color: var(--blue); }
.table thead th .sort-arrow { font-size: 0.65rem; color: var(--blue); }

.table tbody tr { transition: background 0.12s; }
.table tbody tr:hover,
.table-hover tbody tr:hover { background: rgba(37, 99, 235, 0.03); }
.table tbody td {
  padding: 0.6rem;
  font-size: 0.84rem;
  color: var(--slate);
  border-top: 1px solid var(--cloud);
  vertical-align: middle;
}
.table tbody tr:last-child td { border-bottom: none; }

/* Table card header for backwards compat */
.table-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.table-card-header {
  background: var(--cloud);
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--mist);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table-card-header h5 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
.table-card-body { padding: 0; }

/* =============================================
   FORMS
   ============================================= */
.form-control {
  font-family: var(--font-body);
  font-size: 0.85rem;
  border: 1px solid var(--mist);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  color: var(--slate);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: var(--shadow-glow);
  color: var(--navy);
}
.form-control::placeholder { color: var(--silver); }

label,
.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.25rem;
}

.form-check-label {
  font-size: 0.82rem;
  color: var(--slate);
}

select.form-control {
  appearance: auto;
}

.input-group .form-control { border-radius: var(--radius-sm); }
.input-group-append .btn,
.input-group-prepend .btn {
  border-radius: var(--radius-sm);
}

/* Custom file input */
.custom-file-label {
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.85rem;
  transition: all 0.15s;
}

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}
.btn-outline-primary {
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.btn-success { background: var(--emerald); border-color: var(--emerald); }
.btn-success:hover { background: #047857; border-color: #047857; }

.btn-warning { background: var(--amber); border-color: var(--amber); color: var(--white); }
.btn-warning:hover { background: #b45309; border-color: #b45309; color: var(--white); }

.btn-danger { background: var(--red); border-color: var(--red); }
.btn-danger:hover { background: #b91c1c; border-color: #b91c1c; }

.btn-info { background: var(--blue-light); border-color: var(--blue-light); color: var(--white); }
.btn-info:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

.btn-secondary {
  background: var(--cloud);
  border-color: var(--mist);
  color: var(--slate);
}
.btn-secondary:hover {
  background: var(--mist);
  border-color: var(--silver);
  color: var(--navy);
}

.btn-outline-secondary {
  color: var(--steel);
  border-color: var(--mist);
}
.btn-outline-secondary:hover {
  background: var(--cloud);
  border-color: var(--silver);
  color: var(--navy);
}

.btn-sm {
  font-size: 0.78rem;
  padding: 0.3rem 0.6rem;
}

/* Action button group (table actions) */
.action-group {
  display: flex;
  gap: 3px;
  justify-content: center;
}
.action-btn {
  width: 28px; height: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--mist);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--steel);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.action-btn:hover { background: var(--cloud); color: var(--navy); border-color: var(--silver); text-decoration: none; }
.action-btn--view:hover { color: var(--blue); border-color: var(--blue); }
.action-btn--edit:hover { color: var(--amber); border-color: var(--amber); }
.action-btn--reassign:hover { color: var(--blue); border-color: var(--blue); }
.action-btn--delete:hover { color: var(--red); border-color: var(--red); }
.action-btn--disabled {
  color: var(--silver); cursor: default;
  border-color: var(--cloud); background: var(--cloud);
  pointer-events: none; opacity: 0.6;
}

/* =============================================
   STATUS & PRIORITY BADGES
   ============================================= */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.status-pill i { font-size: 0.55rem; }
.status-pill--open { background: var(--blue-pale); color: #1e40af; }
.status-pill--complete, .status-pill--completed { background: var(--emerald-light); color: #065f46; }
.status-pill--closed { background: var(--red-light); color: #991b1b; }
.status-pill--planning { background: var(--amber-light); color: #92400e; }
.status-pill--inprogress, .status-pill--in-progress { background: var(--blue-pale); color: #1e40af; }
.status-pill--onhold, .status-pill--on-hold { background: var(--cloud); color: var(--steel); }

.priority-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  display: inline-block;
}
.priority-tag--high { background: var(--red-light); color: var(--red); }
.priority-tag--medium { background: var(--amber-light); color: var(--amber); }
.priority-tag--low { background: var(--blue-pale); color: var(--blue); }

/* =============================================
   BADGES (Bootstrap override)
   ============================================= */
.badge {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem;
  border-radius: 20px;
}
.badge-primary { background: var(--blue); }
.badge-success { background: var(--emerald); }
.badge-warning { background: var(--amber-light); color: #92400e; }
.badge-danger { background: var(--red); }
.badge-info { background: var(--blue-light); }
.badge-secondary { background: var(--silver); }
.badge-light { background: var(--cloud); color: var(--steel); }

/* =============================================
   MODALS
   ============================================= */
.modal-content {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.modal-header {
  border-bottom: 1px solid var(--mist);
  padding: 1rem 1.25rem;
}
.modal-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
}
.modal-body { padding: 1.25rem; }
.modal-footer {
  border-top: 1px solid var(--mist);
  padding: 0.75rem 1.25rem;
}

/* =============================================
   ALERTS
   ============================================= */
.alert {
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  border: none;
  padding: 0.75rem 1rem;
}
.alert-success { background: var(--emerald-light); color: #065f46; }
.alert-danger { background: var(--red-light); color: #991b1b; }
.alert-warning { background: var(--amber-light); color: #92400e; }
.alert-info { background: var(--blue-pale); color: #1e40af; }

/* =============================================
   APPROVAL & REPORT INDICATORS
   ============================================= */
.approval-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}
.approval-dot--yes { background: var(--emerald-light); color: var(--emerald); }
.approval-dot--no { background: var(--amber-light); color: var(--amber); }

.report-indicator { text-align: center; font-size: 0.8rem; }
.report-indicator--yes { color: var(--emerald); }
.report-indicator--pending { color: var(--amber); }
.report-indicator--no { color: var(--mist); }

/* =============================================
   HOURS DISPLAY
   ============================================= */
.hours-display {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.hours-over { color: var(--red); font-weight: 600; }
.hours-ok { color: var(--slate); }
.hours-missing {
  font-size: 0.7rem;
  color: var(--amber);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

/* =============================================
   CONTROL BAR
   ============================================= */
.control-bar {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.control-bar .search-box {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.control-bar .search-box i {
  position: absolute;
  left: 0.75rem; top: 50%;
  transform: translateY(-50%);
  color: var(--silver);
  font-size: 0.8rem;
}
.control-bar .search-box input {
  font-family: var(--font-body);
  width: 100%;
  border: 1px solid var(--mist);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem 0.5rem 2rem;
  font-size: 0.85rem;
  background: var(--cloud);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.control-bar .search-box input:focus {
  border-color: var(--blue);
  box-shadow: var(--shadow-glow);
  background: var(--white);
}

.btn-control {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--mist);
  background: var(--white);
  color: var(--slate);
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.btn-control:hover { background: var(--cloud); border-color: var(--silver); color: var(--navy); }
.btn-control.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.wo-count-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--blue);
  color: var(--white);
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
}

/* =============================================
   FILTER PANEL & CHIPS
   ============================================= */
.filter-panel {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.filter-panel.show { display: block; animation: slideDown 0.2s ease-out; }

.filter-section-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel);
  margin-bottom: 0.5rem;
}

.filter-chip {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  border: 1px solid var(--mist);
  background: var(--white);
  color: var(--slate);
  cursor: pointer;
  transition: all 0.15s;
  margin: 0.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.filter-chip:hover { border-color: var(--blue); color: var(--blue); }
.filter-chip.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.filter-chip i { font-size: 0.65rem; }

/* Advanced filters (backwards compat) */
.advanced-filters {
  background-color: var(--cloud);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--mist);
}
.quick-filter { margin: 0.125rem; }
.quick-filter.active {
  background-color: var(--blue) !important;
  color: white !important;
  border-color: var(--blue) !important;
}

/* =============================================
   ADMIN TITLE BAR
   ============================================= */
.admin-title-bar {
  padding: 1rem 0;
}
.admin-title-bar h1,
.admin-title-bar .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

/* =============================================
   SCROLL HINT
   ============================================= */
.scroll-hint {
  display: none;
  text-align: center;
  padding: 0.4rem;
  font-size: 0.75rem;
  color: var(--silver);
  background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
  font-weight: 500;
}
@media (max-width: 991px) {
  .scroll-hint { display: block; }
}

/* =============================================
   CELL HELPERS
   ============================================= */
.cell-id {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.82rem;
  text-align: center;
}
.cell-job {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue);
  text-align: center;
  white-space: nowrap;
}
.cell-center { text-align: center; }
.cell-description { max-width: 280px; min-width: 180px; }

.desc-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
  font-size: 0.82rem;
  line-height: 1.45;
}
.desc-clamp.expanded {
  -webkit-line-clamp: unset;
  display: block;
}
.desc-toggle {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--blue);
  cursor: pointer;
  margin-top: 0.15rem;
  display: inline-block;
}
.desc-toggle:hover { text-decoration: underline; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.35s ease-out both;
}
.animate-in:nth-child(1) { animation-delay: 0.03s; }
.animate-in:nth-child(2) { animation-delay: 0.06s; }
.animate-in:nth-child(3) { animation-delay: 0.09s; }
.animate-in:nth-child(4) { animation-delay: 0.12s; }
.animate-in:nth-child(5) { animation-delay: 0.15s; }

/* =============================================
   LOGIN PAGE
   ============================================= */
.login-page {
  background: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
}
.login-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 767px) {
  .container-fluid { padding: 0 0.5rem; }
  .page-header { padding: 1rem 0 0.5rem; }
  .page-header h1 { font-size: 1.3rem; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .kpi-card { padding: 0.75rem 0.85rem; }
  .kpi-value { font-size: 1.3rem; }
  .control-bar { padding: 0.6rem 0.75rem; }
  .navbar-collapse { max-height: 80vh; overflow-y: auto; }
  .card-header { padding: 0.65rem 0.85rem; }
  .card-body { padding: 0.85rem; }
  .table-card-header { flex-direction: column; align-items: flex-start; }

  .btn-sm {
    padding: 0.3rem 0.4rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .kpi-value { font-size: 1.15rem; }
  .kpi-label { font-size: 0.68rem; }
}

/* =============================================
   GANTT / CHART OVERRIDES
   ============================================= */
.chart-container {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

/* =============================================
   MODALS — V2 Global Styling
   ============================================= */
.modal-content {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.modal-header {
  background: var(--navy);
  border: none;
  padding: 1rem 1.25rem;
}
.modal-header .modal-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
}
.modal-header .close {
  color: var(--white);
  opacity: .7;
  text-shadow: none;
}
.modal-header .close:hover { opacity: 1; }
.modal-body {
  padding: 1.25rem;
}
.modal-body label {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--steel);
}
.modal-footer {
  border-top: 1px solid var(--mist);
  padding: .75rem 1.25rem;
  background: var(--cloud);
}
.modal-footer .btn { font-size: .82rem; }
.modal-backdrop.show { opacity: .4; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-navy { color: var(--navy); }
.text-steel { color: var(--steel); }
.text-blue { color: var(--blue); }
.bg-cloud { background: var(--cloud); }
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
