/* ============================================================================
   Annual Budget Module — production-grade tokens & layout
   Design intent: institutional, document-grade, calm. Not a SaaS dashboard.
   - Serif display for ordinance-feel headings (Instrument Serif already loaded)
   - Mono for figures (JetBrains Mono already loaded)
   - One spacing scale: 4 / 8 / 12 / 16 / 24 / 32 / 48
   - Brand inheritance from app theme; budget overlays its own scope.
   ============================================================================ */

:root {
  --bgt-ink:          #0d1b2a;
  --bgt-ink-2:        #2a3b50;
  --bgt-mute:         #6b7a90;
  --bgt-line:         #e2e7ef;
  --bgt-surface:      #ffffff;
  --bgt-surface-2:    #f6f8fc;
  --bgt-surface-3:    #eef2f8;
  --bgt-brand:        #0a3a6b;     /* navy — budget docs */
  --bgt-brand-soft:   #e7eef8;
  --bgt-gold:         #b08328;     /* official seal accent */
  --bgt-success:      #137a4d;
  --bgt-warn:         #b35a00;
  --bgt-danger:       #b3261e;

  --bgt-r-sm: 6px; --bgt-r-md: 10px; --bgt-r-lg: 14px;
  --bgt-pad: 16px;
  --bgt-shadow-card: 0 1px 0 rgba(13,27,42,.04), 0 6px 18px -10px rgba(13,27,42,.18);
}

/* ── Page shell ─────────────────────────────────────────────────────────── */
.budget-page { padding: 24px 28px; color: var(--bgt-ink); }
.budget-page h1, .budget-page h2, .budget-page h3 { color: var(--bgt-ink); }

.budget-pageheader {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--bgt-line); margin-bottom: 20px;
}
.budget-pageheader h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 32px; font-weight: 400; letter-spacing: -.01em; margin: 0 0 4px;
}
.budget-pageheader p { margin: 0; color: var(--bgt-mute); font-size: 14px; }
.budget-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.bgt-btn {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  padding: 8px 14px; border-radius: var(--bgt-r-md); font-weight: 600;
  font-size: 13px; line-height: 1; border: 1px solid var(--bgt-line);
  background: var(--bgt-surface); color: var(--bgt-ink);
  text-decoration: none; transition: all .15s ease;
}
.bgt-btn:hover { border-color: var(--bgt-ink-2); transform: translateY(-1px); }
.bgt-btn.primary { background: var(--bgt-brand); border-color: var(--bgt-brand); color: #fff; }
.bgt-btn.primary:hover { background: #082c52; }
.bgt-btn.gold { background: var(--bgt-gold); border-color: var(--bgt-gold); color: #fff; }
.bgt-btn.danger { color: var(--bgt-danger); border-color: #f3c8c5; background: #fdf2f1; }
.bgt-btn.ghost { background: transparent; border-color: transparent; color: var(--bgt-mute); }
.bgt-btn.tiny { padding: 4px 8px; font-size: 11px; }

/* ── Cards & summary tiles ──────────────────────────────────────────────── */
.bgt-card {
  background: var(--bgt-surface); border: 1px solid var(--bgt-line);
  border-radius: var(--bgt-r-lg); padding: var(--bgt-pad); box-shadow: var(--bgt-shadow-card);
  margin-bottom: 16px;
}
.bgt-card h3 { margin: 0 0 12px; font-size: 15px; letter-spacing: -.005em; }
.bgt-tile-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px; margin-bottom: 20px;
}
.bgt-tile {
  background: var(--bgt-surface); border: 1px solid var(--bgt-line);
  border-radius: var(--bgt-r-lg); padding: 14px 16px;
}
.bgt-tile .label { font-size: 11px; color: var(--bgt-mute); text-transform: uppercase; letter-spacing: .08em; }
.bgt-tile .value { font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 600;
  color: var(--bgt-ink); margin-top: 4px; }
.bgt-tile .delta { font-size: 11px; color: var(--bgt-mute); margin-top: 2px; }
.bgt-tile.accent { background: var(--bgt-brand-soft); border-color: #c9d8ee; }

/* ── Status badges ──────────────────────────────────────────────────────── */
.bgt-badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--bgt-surface-3); color: var(--bgt-ink-2); border: 1px solid var(--bgt-line);
}
.bgt-badge.draft     { background: #f1f3f8; color: #4a5568; }
.bgt-badge.submitted { background: #fef6e7; color: #93620a; border-color: #f5d8a0; }
.bgt-badge.review    { background: #e7eefa; color: #1f3d72; border-color: #c9d8ee; }
.bgt-badge.endorsed  { background: #e6f6ec; color: #0e5a37; border-color: #bee0c9; }
.bgt-badge.enacted   { background: #d8eedf; color: #0a4a2c; border-color: #9ed1ad; }
.bgt-badge.rejected  { background: #fdecea; color: var(--bgt-danger); border-color: #f3c8c5; }
.bgt-badge.revised   { background: #f3eafe; color: #5b2bb6; border-color: #ddc7f5; }
.bgt-badge.archived  { background: var(--bgt-surface-3); color: var(--bgt-mute); }

.bgt-flash {
  padding: 12px 14px; border-radius: var(--bgt-r-md); margin-bottom: 16px;
  font-size: 13px; border: 1px solid;
}
.bgt-flash.ok    { background: #e6f6ec; color: #0e5a37; border-color: #bee0c9; }
.bgt-flash.error { background: #fdecea; color: var(--bgt-danger); border-color: #f3c8c5; }

/* ── Tabs ───────────────────────────────────────────────────────────────── */
.bgt-tabs {
  display: flex; gap: 4px; border-bottom: 1px solid var(--bgt-line);
  margin-bottom: 16px; overflow-x: auto;
}
.bgt-tabs a {
  padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--bgt-mute);
  text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap;
}
.bgt-tabs a.is-active { color: var(--bgt-brand); border-bottom-color: var(--bgt-brand); }
.bgt-tabs a:hover { color: var(--bgt-ink); }

/* ── Tables ─────────────────────────────────────────────────────────────── */
.bgt-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.bgt-table th, .bgt-table td {
  padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--bgt-line);
  vertical-align: top;
}
.bgt-table th {
  background: var(--bgt-surface-2); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .06em; color: var(--bgt-ink-2);
}
.bgt-table tbody tr:hover { background: #fafcff; }
.bgt-table .num { text-align: right; font-family: 'JetBrains Mono', monospace; white-space: nowrap; }
.bgt-table tfoot th, .bgt-table tfoot td { background: var(--bgt-surface-3); font-weight: 700; }
.bgt-table .row-actions { display: flex; gap: 4px; }

/* ── Forms ──────────────────────────────────────────────────────────────── */
.bgt-form-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px 16px;
}
.bgt-field { display: flex; flex-direction: column; gap: 4px; }
.bgt-field.col-2 { grid-column: span 2; } .bgt-field.col-3 { grid-column: span 3; }
.bgt-field.col-4 { grid-column: span 4; } .bgt-field.col-6 { grid-column: span 6; }
.bgt-field.col-8 { grid-column: span 8; } .bgt-field.col-12 { grid-column: span 12; }
.bgt-field label {
  font-size: 11px; font-weight: 700; color: var(--bgt-ink-2);
  text-transform: uppercase; letter-spacing: .04em;
}
.bgt-field input, .bgt-field select, .bgt-field textarea {
  padding: 9px 10px; border: 1px solid var(--bgt-line); border-radius: var(--bgt-r-md);
  font: inherit; font-size: 13px; background: #fff; color: var(--bgt-ink);
  transition: border-color .15s, box-shadow .15s;
}
.bgt-field input:focus, .bgt-field select:focus, .bgt-field textarea:focus {
  outline: none; border-color: var(--bgt-brand);
  box-shadow: 0 0 0 3px rgba(10,58,107,.12);
}
.bgt-field input.num { text-align: right; font-family: 'JetBrains Mono', monospace; }
.bgt-field .hint { font-size: 11px; color: var(--bgt-mute); }
.bgt-field .err  { font-size: 11px; color: var(--bgt-danger); }

@media (max-width: 900px) {
  .bgt-form-grid { grid-template-columns: repeat(4, 1fr); }
  .bgt-field.col-2, .bgt-field.col-3, .bgt-field.col-4, .bgt-field.col-6, .bgt-field.col-8
   { grid-column: span 4; }
}

/* ── Compliance list ────────────────────────────────────────────────────── */
.bgt-compliance-list { list-style: none; padding: 0; margin: 0; }
.bgt-compliance-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--bgt-line);
}
.bgt-compliance-list .icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 700; font-size: 12px;
}
.bgt-compliance-list li.pass .icon { background: #d8eedf; color: var(--bgt-success); }
.bgt-compliance-list li.fail .icon { background: #fdecea; color: var(--bgt-danger); }
.bgt-compliance-list li.warn .icon { background: #fef6e7; color: var(--bgt-warn); }
.bgt-compliance-list .body { flex: 1; }
.bgt-compliance-list .body .title { font-weight: 600; font-size: 13px; }
.bgt-compliance-list .body .msg { color: var(--bgt-mute); font-size: 12px; margin-top: 2px; }

/* ── Workflow tracker ───────────────────────────────────────────────────── */
.bgt-workflow {
  display: flex; gap: 0; padding: 16px 0;
}
.bgt-step {
  flex: 1; text-align: center; padding: 12px 8px; position: relative;
}
.bgt-step .dot {
  width: 28px; height: 28px; border-radius: 50%; margin: 0 auto 6px;
  background: var(--bgt-surface-3); color: var(--bgt-mute);
  display: grid; place-items: center; font-weight: 700; font-size: 12px;
  border: 2px solid var(--bgt-line);
}
.bgt-step.done .dot { background: var(--bgt-success); color: #fff; border-color: var(--bgt-success); }
.bgt-step.active .dot { background: var(--bgt-brand); color: #fff; border-color: var(--bgt-brand); }
.bgt-step .label { font-size: 11px; color: var(--bgt-mute); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.bgt-step.done .label, .bgt-step.active .label { color: var(--bgt-ink); }
.bgt-step::after {
  content: ''; position: absolute; top: 26px; left: 50%; right: -50%;
  height: 2px; background: var(--bgt-line); z-index: 0;
}
.bgt-step:last-child::after { display: none; }
.bgt-step.done::after { background: var(--bgt-success); }

/* ── Document print ─────────────────────────────────────────────────────── */
.budget-doc {
  background: #fff; max-width: 8.5in; margin: 24px auto; padding: 1in;
  font-family: 'Times New Roman', Georgia, serif; color: #000; font-size: 12pt; line-height: 1.5;
  box-shadow: 0 0 24px rgba(0,0,0,.08);
}
.budget-doc .doc-head { text-align: center; margin-bottom: 24px; }
.budget-doc .doc-republic { margin: 0; font-size: 11pt; }
.budget-doc .doc-province { margin: 0; font-weight: 700; font-size: 11pt; }
.budget-doc .doc-brgy     { margin: 0 0 12px; font-weight: 700; font-size: 12pt; }
.budget-doc .doc-title    { margin: 8px 0 0; font-size: 16pt; font-weight: 700; }
.budget-doc h2 { font-size: 13pt; margin: 16px 0 8px; }
.budget-doc h3 { font-size: 12pt; margin: 12px 0 6px; }
.budget-doc .doc-table { width: 100%; border-collapse: collapse; margin: 8px 0; font-size: 10.5pt; }
.budget-doc .doc-table th, .budget-doc .doc-table td {
  border: 1px solid #333; padding: 6px 8px; text-align: left; vertical-align: top;
}
.budget-doc .doc-table th { background: #f0f0f0; }
.budget-doc .doc-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.budget-doc .doc-foot { margin-top: 32px; font-size: 10pt; color: #555; text-align: right; }

@media print {
  body > .sidebar, body > nav, .budget-pageheader, .budget-actions, .bgt-tabs, .bgt-flash { display: none !important; }
  .budget-doc { box-shadow: none; margin: 0; padding: .5in; }
  .bgt-card { border: none; box-shadow: none; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .bgt-btn, .bgt-field input, .bgt-field select, .bgt-field textarea { transition: none; }
  .bgt-btn:hover { transform: none; }
}

/* ============================================================================
   Migration-0010 components — added 2026-04-26
   Stays within the existing institutional document-grade language.
   No new colors. No purple gradients. No glassmorphism.
   ============================================================================ */

/* ── Tiny meta caption inline with section headings ───────────────────────── */
.bgt-card h3 .bgt-meta,
.budget-pageheader .bgt-meta {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-size: 13px; font-weight: 400;
  color: var(--bgt-mute); margin-left: 6px;
}

/* ── Search + filter bar (budget index) ───────────────────────────────────── */
.bgt-search-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin: -4px 0 12px;
  padding: 10px 12px; background: var(--bgt-surface-2);
  border: 1px solid var(--bgt-line); border-radius: var(--bgt-r-md);
}
.bgt-search-bar input[type="search"] {
  flex: 1 1 240px; min-width: 200px;
  padding: 8px 12px; border: 1px solid var(--bgt-line); border-radius: var(--bgt-r-md);
  font-size: 13px; background: var(--bgt-surface);
}
.bgt-search-bar select {
  padding: 8px 10px; border: 1px solid var(--bgt-line); border-radius: var(--bgt-r-md);
  font-size: 13px; background: var(--bgt-surface);
}

/* ── Preparation Checklist ───────────────────────────────────────────────── */
.bgt-checklist {
  background: linear-gradient(180deg, #fff, var(--bgt-surface-2));
  border: 1px solid var(--bgt-line); border-radius: var(--bgt-r-lg);
  padding: 16px 18px; margin-bottom: 20px; box-shadow: var(--bgt-shadow-card);
}
.bgt-checklist > header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 12px;
}
.bgt-checklist h3 {
  margin: 0; font-family: 'Instrument Serif', Georgia, serif;
  font-size: 20px; font-weight: 400; letter-spacing: -.005em;
}
.bgt-checklist-meter {
  display: flex; align-items: center; gap: 10px; min-width: 200px;
}
.bgt-checklist-meter .bar {
  flex: 1; height: 8px; background: var(--bgt-surface-3);
  border-radius: 999px; overflow: hidden;
}
.bgt-checklist-meter .bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--bgt-brand), var(--bgt-gold));
  transition: width .4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bgt-checklist-meter .num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; color: var(--bgt-mute); white-space: nowrap;
}
.bgt-checklist ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 8px 16px;
}
.bgt-checklist li {
  display: flex; align-items: center; gap: 10px; font-size: 13px;
  color: var(--bgt-ink-2);
}
.bgt-checklist li .dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bgt-surface-3); border: 1px solid var(--bgt-line);
  color: var(--bgt-mute); font-size: 12px; font-weight: 600;
  flex-shrink: 0;
}
.bgt-checklist li.is-done { color: var(--bgt-ink); }
.bgt-checklist li.is-done .dot {
  background: var(--bgt-success); border-color: var(--bgt-success); color: #fff;
}
.bgt-locked-note {
  margin: 14px 0 0; padding: 10px 14px;
  background: #fff8e6; border-left: 3px solid var(--bgt-gold);
  border-radius: 4px; font-size: 13px; color: #6b4f10;
}
.bgt-locked-note strong { font-weight: 700; }

/* ── Tabs: enable horizontal scroll when many tabs are present ────────────── */
.bgt-tabs { overflow-x: auto; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.bgt-tabs > a { white-space: nowrap; }

/* ── Deadlines list ──────────────────────────────────────────────────────── */
.bgt-deadlines { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bgt-deadlines li {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  padding: 14px 16px; border: 1px solid var(--bgt-line); border-radius: var(--bgt-r-md);
  background: var(--bgt-surface);
}
.bgt-deadlines li.is-pending { border-left: 4px solid #94a3b8; }
.bgt-deadlines li.is-done    { border-left: 4px solid var(--bgt-success); background: #f3faf6; }
.bgt-deadlines li.is-missed  { border-left: 4px solid var(--bgt-danger);  background: #fdf2f1; }
.bgt-deadlines li .dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; background: var(--bgt-surface-3); color: var(--bgt-mute);
}
.bgt-deadlines li.is-done .dot   { background: var(--bgt-success); color: #fff; }
.bgt-deadlines li.is-missed .dot { background: var(--bgt-danger);  color: #fff; }
.bgt-deadlines li .body .title { font-weight: 600; color: var(--bgt-ink); margin-bottom: 2px; }
.bgt-deadlines li .body .meta {
  font-size: 12px; color: var(--bgt-mute);
  display: flex; flex-wrap: wrap; gap: 4px 10px;
}

/* ── Review Findings ─────────────────────────────────────────────────────── */
.bgt-findings { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bgt-findings li {
  padding: 14px 16px; border: 1px solid var(--bgt-line); border-radius: var(--bgt-r-md);
  background: var(--bgt-surface);
}
.bgt-findings li.sev-blocker  { border-left: 4px solid var(--bgt-danger); }
.bgt-findings li.sev-major    { border-left: 4px solid #d97706; }
.bgt-findings li.sev-minor    { border-left: 4px solid #ca8a04; }
.bgt-findings li.sev-observation { border-left: 4px solid #94a3b8; }
.bgt-findings li.st-resolved  { background: #f3faf6; }
.bgt-findings li.st-waived    { opacity: .65; }
.bgt-findings .row1 {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 8px;
  font-size: 12px;
}
.bgt-findings .row1 .code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; color: var(--bgt-mute);
}
.bgt-findings .row1 .ref { color: var(--bgt-mute); font-style: italic; font-size: 12px; }
.bgt-findings .desc { color: var(--bgt-ink); font-size: 14px; line-height: 1.5; }
.bgt-findings .rec  { color: var(--bgt-ink-2); font-size: 13px; margin-top: 6px; }
.bgt-findings details { margin-top: 10px; }
.bgt-findings details summary {
  cursor: pointer; font-size: 12px; color: var(--bgt-brand); font-weight: 600;
  user-select: none;
}
.bgt-findings li.empty { color: var(--bgt-mute); font-size: 13px; border-style: dashed; }

/* Severity + status badges */
.bgt-badge.sev-blocker { background: #fdf2f1; color: var(--bgt-danger); border: 1px solid #f3c8c5; }
.bgt-badge.sev-major   { background: #fff7ed; color: #b45309; border: 1px solid #fed7aa; }
.bgt-badge.sev-minor   { background: #fef9c3; color: #854d0e; border: 1px solid #fde68a; }
.bgt-badge.sev-observation { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
.bgt-badge.st-open        { background: #eef2ff; color: var(--bgt-brand); border: 1px solid #c7d2fe; }
.bgt-badge.st-in_progress { background: #fff7ed; color: #b45309; border: 1px solid #fed7aa; }
.bgt-badge.st-resolved    { background: #f3faf6; color: var(--bgt-success); border: 1px solid #c8e6d6; }
.bgt-badge.st-waived      { background: #f1f5f9; color: var(--bgt-mute); border: 1px solid #cbd5e1; }

/* ── Finance → Annual Budget bridge tile ─────────────────────────────────── */
.finance-budget-bridge {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 26px; margin: 0 0 20px;
  background:
    linear-gradient(135deg, rgba(176,131,40,.08), rgba(10,58,107,.04) 60%),
    var(--bgt-surface);
  border: 1px solid var(--bgt-line); border-left: 4px solid var(--bgt-brand);
  border-radius: var(--bgt-r-lg); box-shadow: var(--bgt-shadow-card);
}
.finance-budget-bridge .fbb-left { flex: 1 1 320px; }
.finance-budget-bridge h2 {
  margin: 0 0 6px; font-family: 'Instrument Serif', Georgia, serif;
  font-size: 24px; font-weight: 400; letter-spacing: -.01em; color: var(--bgt-ink);
}
.finance-budget-bridge p { margin: 0; color: var(--bgt-ink-2); font-size: 13.5px; line-height: 1.6; max-width: 720px; }
.finance-budget-bridge .fbb-actions { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Citywide status bars ────────────────────────────────────────────────── */
.bgt-citywide-status { display: flex; flex-direction: column; gap: 10px; }
.bgt-citywide-status .row {
  display: grid; grid-template-columns: 140px 1fr 100px; gap: 12px; align-items: center;
}
.bgt-citywide-status .lbl {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; color: var(--bgt-ink-2);
}
.bgt-citywide-status .track {
  height: 14px; background: var(--bgt-surface-3); border-radius: 999px; overflow: hidden;
}
.bgt-citywide-status .track > span {
  display: block; height: 100%;
  transition: width .5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bgt-citywide-status .num {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 13px;
  text-align: right; color: var(--bgt-ink); font-weight: 600;
}
.bgt-citywide-status .num .pct { color: var(--bgt-mute); font-weight: 400; margin-left: 4px; }

/* ── Mobile polish ───────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .bgt-checklist > header { flex-direction: column; align-items: stretch; }
  .bgt-checklist-meter { min-width: 0; }
  .bgt-deadlines li { grid-template-columns: auto 1fr; }
  .bgt-deadlines li form { grid-column: 1 / -1; justify-self: stretch; }
  .finance-budget-bridge { flex-direction: column; align-items: flex-start; }
  .bgt-citywide-status .row { grid-template-columns: 100px 1fr 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .bgt-checklist-meter .bar > span,
  .bgt-citywide-status .track > span { transition: none; }
}
