/* South Van Zandt FD – modern wall dashboard */

:root {
  --bg: #070a12;
  --card-bg: rgba(12, 18, 32, 0.72);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f3f6fb;
  --text-muted: #9aa8bc;
  --accent: #c41e1e;
  --accent-hover: #e12a2a;
  --gold: #e8c547;
  --gold-dim: rgba(232, 197, 71, 0.14);
  --danger: #ef4444;
  --success: #22c55e;
  --warning: #f59e0b;
  --header-height: 92px;
  --nav-height: 44px;
  --ticker-height: 44px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 85% -15%, rgba(37, 99, 235, 0.28), transparent 55%),
    radial-gradient(900px 500px at -10% 110%, rgba(196, 30, 30, 0.18), transparent 50%),
    linear-gradient(160deg, #0a1020 0%, #0c1528 45%, #0a0e18 100%);
}

.screen {
  display: none;
  height: calc(100vh - var(--nav-height));
  width: 100vw;
  flex-direction: column;
  position: relative;
}
.screen.active { display: flex; }

.main-nav {
  height: var(--nav-height);
  background: rgba(5, 8, 14, 0.92);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.85rem;
  flex-shrink: 0;
  z-index: 20;
}
.nav-patch { height: 28px; width: auto; margin-right: 0.55rem; }
.nav-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.45rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
}
.nav-btn:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-btn.active { color: var(--gold); background: var(--gold-dim); }

.svz-watermark {
  position: absolute;
  inset: 0;
  background: url("../img/svz-letters.png") center 55% / min(55vw, 640px) no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
#main-dashboard > *:not(.svz-watermark) { position: relative; z-index: 1; }

.top-bar {
  min-height: var(--header-height);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding: 0.65rem 1.4rem;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(8,12,22,0.55), transparent);
}
.brand { display: flex; align-items: center; gap: 0.9rem; min-width: 0; }
.brand-patch {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
}
.brand-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.brand-name {
  font-family: Oswald, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.brand-sub {
  margin-top: 0.15rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.header-meta { text-align: right; }
.clock {
  font-family: Oswald, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}
.weather {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.station-pill {
  min-width: 140px;
  text-align: right;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
}
.station-pill-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}
.station-pill-name { font-weight: 700; font-size: 0.95rem; }
.station-pill-units { font-size: 0.75rem; color: var(--gold); }

.fire-danger {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
}
.fire-danger-low { background: #15803d; color: #fff; }       /* Green */
.fire-danger-moderate { background: #1d4ed8; color: #fff; }  /* Blue */
.fire-danger-high { background: #ca8a04; color: #111; }      /* Yellow */
.fire-danger-veryhigh { background: #ea580c; color: #fff; }  /* Orange */
.fire-danger-extreme { background: #b91c1c; color: #fff; }   /* Red */

.page-panel {
  flex: 1;
  min-height: 0;
  display: none;
  padding: 1rem 1.2rem 0.6rem;
}
.page-panel.active { display: flex; flex-direction: column; }

.split-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.weather-grid { grid-template-columns: 0.95fr 1.15fr; }

.card.glass {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}
.card h2 {
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(37,99,235,0.18), rgba(232,197,71,0.05) 50%, transparent);
  flex-shrink: 0;
}
.card-content {
  flex: 1;
  min-height: 0;
  padding: 1rem 1.15rem;
  overflow-y: auto;
  font-size: 0.95rem;
}
.card-content::-webkit-scrollbar { width: 8px; }
.card-content::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); }
.card-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.22); border-radius: 4px; }

.loading, .empty-state {
  color: var(--text-muted);
  font-style: italic;
  padding: 0.75rem 0;
}

.ticker-bar {
  height: var(--ticker-height);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.75rem 0 0;
  background: linear-gradient(90deg, #1a0a0a, #121820 40%, #0c1018);
  border-top: 1px solid rgba(232, 197, 71, 0.25);
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  padding: 0.55rem 0.9rem;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.ticker-text {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-scroll 28s linear infinite;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.weather-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-content: start;
}
.wx-hero {
  grid-column: 1 / -1;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}
.wx-temp {
  font-family: Oswald, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
.wx-cond {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.wx-tile {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.wx-tile .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.wx-tile .val {
  font-size: 1.25rem;
  font-weight: 700;
}
.radar-wrap {
  display: flex;
  flex-direction: column;
  padding: 0.65rem !important;
}
#radar-map {
  flex: 1;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: #0b1220;
}
.radar-caption {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.message-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}
.message-form input {
  flex: 1;
  min-width: 160px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  color: var(--text);
  font-size: 0.95rem;
}
.message-form input:focus { outline: none; border-color: var(--gold); }
.message-form button {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.message-form button:hover { background: var(--accent-hover); }
.file-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.message-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.message-item .text { line-height: 1.4; }
.message-item .meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.message-item .delete-btn {
  background: transparent;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0 0.4rem;
  opacity: 0.75;
}
.message-item img {
  display: block;
  max-width: 100%;
  max-height: 200px;
  margin-top: 0.45rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
}
.message-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.message-lightbox img { max-width: 92vw; max-height: 92vh; border-radius: 8px; }

.admin-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
}
.admin-panel {
  width: min(720px, 100%);
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.admin-section {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.admin-section h3 {
  font-family: Oswald, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}
.admin-hint { color: var(--text-muted); font-size: 0.9rem; margin: 0.4rem 0; }
.admin-error { color: var(--danger); margin-top: 0.5rem; }
.secondary-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
}
#admin-pin-input {
  width: 100%;
  margin: 0.75rem 0;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.35);
  color: var(--text);
}
#admin-unlock-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}
.fire-danger-controls { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.fd-btn {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.fd-btn.active-level { outline: 2px solid var(--gold); }
.fd-low { border-color: #22c55e; }
.fd-moderate { border-color: #3b82f6; }
.fd-high { border-color: #eab308; }
.fd-veryhigh { border-color: #f97316; }
.fd-extreme { border-color: #ef4444; }

#incident-screen {
  position: fixed;
  inset: 0;
  height: 100vh;
  z-index: 2000;
  background: #111827;
}
.incident-header {
  height: 90px;
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  flex-shrink: 0;
}
.incident-type {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: Oswald, sans-serif;
}
.incident-timer {
  font-size: 2.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: rgba(0,0,0,0.25);
  padding: 0.3rem 1.2rem;
  border-radius: 8px;
}
.incident-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  padding: 1.5rem;
  overflow: hidden;
}
.incident-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}
.info-row { display: flex; flex-direction: column; gap: 0.25rem; }
.info-row .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.info-row .value { font-size: 1.35rem; font-weight: 500; line-height: 1.3; }
.incident-info h3 {
  margin-top: 0.8rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.responding-list {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  min-height: 60px;
  font-size: 1.05rem;
}
.incident-map-container {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  height: 100%;
  position: relative;
}
#incident-map {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  min-height: 360px;
  background: #1a2332;
}
.incident-weather-bar {
  flex-shrink: 0;
  background: linear-gradient(90deg, #140b0b, #1a1408 50%, #140b0b);
  border-top: 1px solid var(--border);
  padding: 0.9rem 1.5rem;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  font-family: Oswald, sans-serif;
}
.incident-footer {
  height: 60px;
  background: #0f1419;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  flex-shrink: 0;
}
#dismiss-incident-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}
.auto-dismiss { color: var(--text-muted); font-size: 0.95rem; }
.unit-badge {
  display: inline-block;
  background: rgba(232, 197, 71, 0.12);
  border: 1px solid rgba(232, 197, 71, 0.4);
  color: #f3e3a0;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin: 0.2rem 0.3rem 0.2rem 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.status-busy { color: var(--warning); }


.message-item img.msg-photo,
.message-item img {
  display: block;
  max-width: 100%;
  max-height: 220px;
  margin-top: 0.45rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  object-fit: cover;
}

.forecast-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.forecast-day {
  padding: 0.65rem 0.4rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  text-align: center;
}
.forecast-day .dow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.forecast-day .hi {
  font-weight: 700;
  font-size: 1.05rem;
}
.forecast-day .lo {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.forecast-day .pop {
  margin-top: 0.3rem;
  font-size: 0.75rem;
  color: #93c5fd;
}
.forecast-title {
  grid-column: 1 / -1;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: var(--text-muted);
}


.ops-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
}
.ops-half {
  flex: 1;
  min-height: 0;
}
.recent-item {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.recent-item .ri-type {
  font-weight: 700;
  font-size: 0.95rem;
}
.recent-item .ri-addr {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.15rem;
}
.recent-item .ri-meta {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}


/* ---------- Theme switch (header) ---------- */
.theme-switch {
  display: flex;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
}
.theme-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  font-family: Oswald, sans-serif;
}
.theme-btn:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.theme-btn.active {
  color: #0b1220;
  background: var(--gold);
}

/* ---------- Night mode ---------- */
body.night-mode {
  filter: none;
}
body.night-mode {
  background:
    radial-gradient(1000px 600px at 85% -15%, rgba(20, 40, 80, 0.18), transparent 55%),
    radial-gradient(800px 400px at -10% 110%, rgba(80, 20, 20, 0.12), transparent 50%),
    linear-gradient(160deg, #03050a 0%, #060a12 45%, #020308 100%) !important;
}
body.night-mode .main-nav {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: rgba(255,255,255,0.05);
}
body.night-mode .top-bar {
  background: linear-gradient(180deg, rgba(0,0,0,0.65), transparent);
  border-bottom-color: rgba(255,255,255,0.05);
}
body.night-mode .card.glass {
  background: rgba(6, 10, 18, 0.88);
  border-color: rgba(255,255,255,0.06);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}
body.night-mode .brand-name,
body.night-mode .clock {
  color: #c5cdd8;
}
body.night-mode .brand-kicker,
body.night-mode .brand-sub,
body.night-mode .weather,
body.night-mode .station-pill-label {
  color: #6b7689;
}
body.night-mode .station-pill {
  background: rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.05);
}
body.night-mode .ticker-bar {
  background: linear-gradient(90deg, #0a0505, #080a0e 40%, #050608);
  border-top-color: rgba(232, 197, 71, 0.12);
}
body.night-mode .ticker-text {
  color: #a8923a;
  opacity: 0.85;
}
body.night-mode .ticker-label {
  background: #7a1414;
}
body.night-mode .svz-watermark {
  opacity: 0.04;
}
body.night-mode .nav-btn.active {
  color: #c4a93a;
  background: rgba(232, 197, 71, 0.08);
}
body.night-mode .card h2 {
  background: linear-gradient(90deg, rgba(20,40,80,0.25), transparent);
  color: #aeb8c8;
}
body.night-mode .wx-temp {
  color: #c5cdd8;
}
body.night-mode #radar-map {
  filter: brightness(0.75);
}
/* Incident screen stays bright/red for safety — do not dim alerts */


/* ---------- Active calls page ---------- */
.active-calls-card {
  height: 100%;
  min-height: 0;
}
.active-calls-card .card-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.75rem;
  letter-spacing: 0;
  text-transform: none;
  font-family: Inter, system-ui, sans-serif;
}
.active-calls-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.active-call-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.22);
}
.active-call-card .ac-type {
  font-family: Oswald, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.active-call-card .ac-when {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.active-call-card .ac-addr {
  margin-top: 0.35rem;
  font-size: 0.95rem;
}
.active-call-card .ac-notes {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.35;
  max-height: 3.2em;
  overflow: hidden;
}
.active-call-card .ac-row {
  margin-top: 0.45rem;
  font-size: 0.85rem;
}
.active-call-card .ac-label {
  color: var(--text-muted);
  margin-right: 0.35rem;
}
.active-call-card .ac-units {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}


/* Apparatus status rows */
.apparatus-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.apparatus-name {
  font-weight: 600;
  flex: 1;
  min-width: 0;
}
.apparatus-status-wrap {
  text-align: right;
  flex-shrink: 0;
  max-width: 58%;
}
.apparatus-detail {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  line-height: 1.25;
}

/* Priority colors: On Scene = gray, Out of Service = red (swapped) */
.status-onscene {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #4b5563;
  color: #f3f4f6;
}
.status-enroute {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #ca8a04;
  color: #111;
}
.status-dispatched {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #1d4ed8;
  color: #fff;
}
.status-available {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #15803d;
  color: #fff;
}
.status-out {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #b91c1c;
  color: #fff;
}
