/* DVC Weather v6 — ONE stylesheet. Dark, single accent, dense but breathable.
   Tokens are read by theme.js (single source of truth — never rename). */
:root {
  --bg: #0b0e14; --panel: #131824; --panel2: #1a2132; --panel3: #202940;
  --border: #232c41; --border2: #2d3854;
  --text: #d5dbe3; --muted: #8b95a7; --faint: #6b7488;
  --accent: #4cc38a; --accent-dim: rgba(76,195,138,.14);
  --blue: #3987e5; --green: #2ba36f; --amber: #c98500; --red: #e5534b;
  --amber-bright: #e8a33d;
  --ctx: #7d8799; --cold: #4ba3c3; --hot: #d08a4e;
  --radius: 10px; --radius-sm: 7px;
  --line: #232c41;              /* alias of --border; both defined on purpose */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 16px; --sp-4: 24px;
  --surf-bg: #0b0e14; --surf-card: #131824; --surf-hover: #1a2132; --surf-popover: #202940;
  --anom-m3: #7db8ff; --anom-m2: #4f8fe8; --anom-m1: #33619e; --anom-0: #3a4155;
  --anom-p1: #a05a3c; --anom-p2: #e0763a; --anom-p3: #ff9d5c; --anom-x: #ff5c5c;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text);
  font: 14px/1.55 system-ui, "Segoe UI", sans-serif; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: rgba(76,195,138,.25); }
.num { font-variant-numeric: tabular-nums; }
.mono { font-family: ui-monospace, Consolas, monospace; font-size: .92em; }
.muted { color: var(--muted); } .faint { color: var(--faint); }
.pos { color: var(--accent); } .neg { color: var(--red); }

/* ---------- topbar ---------- */
.topbar { display: flex; align-items: center; gap: 22px; padding: 0 26px; height: 52px;
  background: rgba(15,19,29,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 20; }
.logo { font-weight: 700; font-size: 16px; letter-spacing: .3px; white-space: nowrap; }
.logo span { color: var(--accent); }
.topbar nav { display: flex; gap: 4px; flex: 1; overflow-x: auto;
  scrollbar-width: none; }
.topbar nav::-webkit-scrollbar { display: none; }
.topbar nav a { white-space: nowrap; }
.topbar nav a { color: var(--muted); padding: 5px 12px; border-radius: 7px;
  font-size: 13.5px; }
.topbar nav a.active { color: var(--text); background: var(--surf-hover); }
.topbar nav a:hover { color: var(--text); text-decoration: none; }
.userbox { color: var(--muted); font-size: 12.5px; display: flex; gap: 12px;
  align-items: center; }
.stamp { color: var(--faint); font-size: 12px; white-space: nowrap; }
.iconbtn { background: var(--surf-hover); color: var(--muted);
  border: 1px solid var(--border); border-radius: 7px; padding: 5px 12px;
  cursor: pointer; font-size: 12.5px; display: inline-block; text-decoration: none; }
.iconbtn:hover { color: var(--text); border-color: var(--border2); }
.iconbtn[disabled] { opacity: .45; cursor: default; }

main { max-width: 1360px; margin: 0 auto; padding: 22px 26px 80px; }

/* ---------- type & section chrome ---------- */
h2.sec { font-size: 18px; font-weight: 650; margin: 8px 0 4px; letter-spacing: .2px;
  scroll-margin-top: 70px; }
.desc { color: var(--muted); font-size: 13px; margin: 0 0 14px; max-width: 860px; }
h3 { font-size: 13.5px; margin: 4px 0 10px; color: var(--muted); font-weight: 600; }
.kicker { color: var(--faint); font-size: 11px; text-transform: uppercase;
  letter-spacing: .8px; font-weight: 600; }
.subnote { color: var(--faint); font-weight: 400; font-size: 12px; margin-left: 8px;
  text-transform: none; letter-spacing: normal; }
.legendline { color: var(--faint); font-size: 11.5px; }

/* ---------- strip (the one panel chrome) ---------- */
.strip { background: var(--surf-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px; margin: 0 0 16px; }
.stripkick { margin-bottom: 10px; }

/* ---------- KPI band ---------- */
.kpiband { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  background: var(--surf-card); border: 1px solid var(--border);
  border-radius: var(--radius); margin: 10px 0 16px; overflow: hidden; }
.kpiband .kpi { padding: 12px 16px 10px; border-left: 1px solid var(--border);
  min-width: 0; }
.kpiband .kpi:first-child { border-left: none; }
.kpiband .k { color: var(--muted); font-size: 11px; text-transform: uppercase;
  letter-spacing: .6px; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; }
.kpiband .v { font-size: 19px; font-weight: 650; margin-top: 3px;
  font-variant-numeric: tabular-nums; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; }
.kpiband .s { color: var(--faint); font-size: 11.5px; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- chips ---------- */
.chip { font-size: 11px; padding: 2px 9px; border-radius: 20px; white-space: nowrap;
  background: var(--surf-hover); color: var(--muted); font-weight: 600;
  letter-spacing: .3px; border: none; cursor: default; }
button.chip { cursor: pointer; }
.chip b { margin-left: 5px; color: var(--text); }
.chip.on { background: var(--accent-dim); color: var(--accent); }
.chip.live { background: var(--accent-dim); color: var(--accent); }
.chip.today { background: rgba(76,195,138,.10); color: var(--accent); }
.chip.settling { background: rgba(201,133,0,.14); color: var(--amber-bright); }
.chip.resolved { background: rgba(57,135,229,.14); color: #6da7ec; }
.chip.upcoming { background: var(--surf-hover); color: var(--muted); }
.chip.delisted { background: var(--surf-hover); color: var(--faint); }
.chip.mismatch { background: rgba(232,163,61,.16); color: var(--amber-bright); }
.chip.tierA { background: rgba(76,195,138,.16); color: var(--accent); }
.chip.tierB { background: var(--surf-hover); color: var(--muted); }
.chip.tierC { background: var(--surf-hover); color: var(--faint); }
.chip.trustP { background: rgba(229,83,75,.15); color: var(--red); }
.chip.trustU { background: var(--surf-hover); color: var(--muted); }
.chiprow { display: flex; gap: 6px; flex-wrap: wrap; margin: 0 0 12px; }

/* ---------- events strip (Main) ---------- */
.events { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 14px; }
.event { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px;
  background: var(--surf-card); border: 1px solid var(--border);
  border-left: 3px solid var(--faint); border-radius: var(--radius-sm);
  padding: 6px 11px; color: var(--text); }
.event:hover { border-color: var(--border2); text-decoration: none; }
.event .ek { font-size: 10px; text-transform: uppercase; letter-spacing: .6px;
  font-weight: 700; color: var(--faint); }
.event.record { border-left-color: var(--red); }
.event.record .ek { color: var(--red); }
.event.mismatch { border-left-color: var(--amber-bright); }
.event.mismatch .ek { color: var(--amber-bright); }
.event.anomaly { border-left-color: var(--hot); }
.event.anomaly .ek { color: var(--hot); }
.event.streak { border-left-color: var(--blue); }
.event.streak .ek { color: var(--blue); }

/* ---------- world map ---------- */
.mapwrap { background: var(--surf-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 6px; margin: 0 0 16px; }
.mapgeo { height: 560px; }
.maplegend { display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  color: var(--faint); font-size: 11.5px; padding: 4px 10px 8px; }
.maplegend .sw { display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; margin-right: 5px; vertical-align: -1px; }
.mp-tt { line-height: 1.5 !important; }
.mp-ttr { margin: 1px 0; }
.mp-ttcity { font-size: 13px; margin-right: 8px; }
.mp-ttdim { color: var(--faint); margin-left: 6px; }
.mp-ttrisk { font-weight: 700; border-radius: 4px; padding: 0 5px; margin-right: 4px; }
.mp-ttrisk.low { background: rgba(76,195,138,.2); color: var(--accent); }
.mp-ttrisk.med { background: rgba(232,163,61,.2); color: var(--amber-bright); }
.mp-ttrisk.hi { background: rgba(229,83,75,.2); color: var(--red); }
.ribbon { display: grid; grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 4px; margin: 0 0 16px; }
.ribbon a { display: flex; justify-content: space-between; padding: 6px 8px;
  border-radius: 6px; color: #0b0e14; font-weight: 700; font-size: 11.5px; }
.ribbon a:hover { text-decoration: none; filter: brightness(1.1); }

/* ---------- market tiles (Main) ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px; }
.tile { background: var(--surf-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px; color: var(--text);
  display: flex; flex-direction: column; gap: 7px; transition: border-color .15s; }
.tile:hover { border-color: var(--accent); text-decoration: none; }
.tile .head { display: flex; align-items: baseline; gap: 8px; }
.tile .city { font-weight: 650; font-size: 14.5px; flex: 1; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; }
.tile .row { display: flex; justify-content: space-between; font-size: 12.5px;
  color: var(--muted); }
.tile .row b { color: var(--text); font-weight: 600; }
.tile .foot { display: flex; gap: 6px; align-items: center; }

/* ---------- tables ---------- */
.twrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-sm); }
table { border-collapse: collapse; width: 100%; font-size: 13px; }
th { text-align: left; color: var(--faint); font-size: 11px; text-transform: uppercase;
  letter-spacing: .5px; font-weight: 600; padding: 8px 10px;
  border-bottom: 1px solid var(--border); background: var(--surf-card);
  position: sticky; top: 0; }
td { padding: 6px 10px; border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--surf-hover); }
table.dense th, table.dense td { padding: 4px 8px; font-size: 12.5px; }
th.num, td.num { text-align: right; font-variant-numeric: tabular-nums; }
th.sortable { cursor: pointer; }
th.sortable:hover, th.sorted { color: var(--text); }
.wcell { white-space: nowrap; }

/* ---------- charts ---------- */
.chart { height: 340px; min-width: 0; }
.chart-sm { height: 240px; }
.chart-lg { height: 420px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 16px; }
.row2 > * { min-width: 0; }

/* ---------- upcoming chip strip (main) ---------- */
.upchips { display: flex; flex-wrap: wrap; gap: 8px; }
.upchip { display: inline-block; padding: 4px 10px; border: 1px solid var(--line);
  border-radius: 999px; background: var(--surf-card); color: var(--text);
  font-size: 12px; text-decoration: none; }
.upchip:hover { border-color: var(--accent); }

/* ---------- filters / segmented ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 6px 0 14px;
  flex-wrap: wrap; }
.seg { display: inline-flex; background: var(--surf-card);
  border: 1px solid var(--border); border-radius: 9px; padding: 3px; gap: 2px; }
.seg button { background: transparent; color: var(--muted); border: none;
  padding: 5px 14px; border-radius: 6px; cursor: pointer; font-size: 13px;
  font-weight: 500; }
.seg button.on { background: var(--surf-popover); color: var(--text); }
.seg button:hover { color: var(--text); }
.seg .n { color: var(--faint); font-size: 11px; margin-left: 5px; }
.back { color: var(--muted); font-size: 13px; }

/* ---------- link rail ---------- */
.linkrail { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.linkrail a { font-size: 12.5px; background: var(--surf-hover); color: var(--muted);
  border: 1px solid var(--border); border-radius: 7px; padding: 4px 11px; }
.linkrail a:hover { color: var(--text); border-color: var(--border2);
  text-decoration: none; }

/* ---------- ring table extras ---------- */
.az { display: inline-block; color: var(--accent); font-weight: 700; }
tr.upwind td { background: rgba(76,195,138,.06); }
.lanechips { display: flex; gap: 8px; margin: 0 0 8px; }

/* ---------- radar fold ---------- */
details.radar { border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surf-card); margin: 0 0 12px; }
details.radar summary { cursor: pointer; color: var(--muted); font-size: 12.5px;
  padding: 8px 12px; }
details.radar iframe { width: 100%; height: 420px; border: 0; display: block;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); }

/* ---------- states ---------- */
.errbox { background: rgba(229,83,75,.08); border: 1px solid rgba(229,83,75,.35);
  border-radius: var(--radius-sm); color: var(--red); padding: 10px 14px;
  font-size: 13px; display: flex; gap: 12px; align-items: center; margin: 0 0 14px; }
.error { color: var(--red); font-size: 12.5px; margin: 4px 0 8px; }
.ok { color: var(--accent); font-size: 12.5px; margin: 4px 0 8px; }
.skel { background: linear-gradient(100deg, var(--surf-card) 40%,
  var(--surf-hover) 50%, var(--surf-card) 60%); background-size: 200% 100%;
  animation: sk 1.4s infinite; border-radius: var(--radius-sm); margin: 0 0 14px; }
@keyframes sk { to { background-position: -200% 0; } }
.toast { color: var(--accent); font-size: 11.5px; margin-left: 8px;
  animation: fadeout 2.4s forwards; }
@keyframes fadeout { 0% { opacity: 1 } 70% { opacity: 1 } 100% { opacity: 0 } }
.freshcap { color: var(--faint); font-size: 11.5px; }
.freshcap .stale { color: var(--amber-bright); }

/* ---------- forms ---------- */
label { display: block; color: var(--muted); font-size: 12.5px; margin: 12px 0 4px; }
input, select { background: var(--surf-hover); border: 1px solid var(--border);
  color: var(--text); border-radius: 7px; padding: 7px 10px; font-size: 13.5px;
  width: 100%; margin: 0 0 10px; font-family: inherit; }
input:focus, select:focus { outline: none; border-color: var(--accent); }
button { background: var(--accent); color: #08110c; border: none; border-radius: 7px;
  padding: 8px 16px; font-size: 13.5px; font-weight: 600; cursor: pointer;
  font-family: inherit; }
button:hover { filter: brightness(1.08); }
button.secondary { background: var(--surf-hover); color: var(--muted);
  border: 1px solid var(--border); font-weight: 500; }
button.secondary:hover { color: var(--text); filter: none; }
.sliderrow { display: flex; gap: 12px; align-items: center; margin: 0 0 10px; }
.sliderrow input[type=range] { flex: 1; margin: 0; padding: 0; }
.slv { color: var(--text); font-size: 13px; white-space: nowrap; min-width: 84px;
  text-align: right; font-variant-numeric: tabular-nums; }
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.formgrid > div { min-width: 0; }
.form-narrow { max-width: 320px; }
.starbtn { background: none; border: none; color: var(--faint); font-size: 15px;
  cursor: pointer; padding: 0 4px; }
.starbtn.on { color: var(--amber-bright); }

/* ---------- login ---------- */
.login-wrap { min-height: 100vh; display: flex; align-items: center;
  justify-content: center; }
.login-card { background: var(--surf-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 34px 38px; width: 340px; }
.login-card h1 { font-size: 21px; margin: 0 0 18px; }
.login-card h1 span { color: var(--accent); }

/* ---------- trader hero ---------- */
.hero { background: var(--surf-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px; margin: 0 0 16px; }
.hero .toprow { display: flex; gap: 12px; align-items: baseline; }
.hero h2 { font-size: 18px; }
.hero .stats { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 12px; }
.hero .hs .l { color: var(--muted); font-size: 11px; text-transform: uppercase;
  letter-spacing: .6px; }
.hero .hs .n { font-size: 19px; font-weight: 650; margin-top: 2px;
  font-variant-numeric: tabular-nums; }
.hero .hs .s { color: var(--faint); font-size: 11.5px; margin-top: 1px; }

/* ---------- admin health grid ---------- */
.healthgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px; }
.hcell { border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px 10px; background: var(--surf-hover); }
.hcell.ok { border-color: rgba(76,195,138,.4); }
.hcell.late { border-color: rgba(232,163,61,.55); background: rgba(232,163,61,.06); }
.hcell.bad { border-color: rgba(229,83,75,.55); background: rgba(229,83,75,.07); }
.hcell .hj { font-size: 12.5px; font-weight: 600; }
.hcell .hm { color: var(--faint); font-size: 11.5px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .row2, .formgrid { grid-template-columns: 1fr; }
  main { padding: 16px 14px 60px; }
  .topbar { padding: 0 14px; gap: 10px; overflow-x: auto; }
  .kpiband { grid-auto-flow: row; grid-template-columns: 1fr 1fr; }
  .kpiband .kpi { border-left: none; border-top: 1px solid var(--border); }
  .kpiband .kpi:nth-child(-n+2) { border-top: none; }
  .mapgeo { height: 55vh; }
}

/* ================= v7 component kit ================= */

/* ---------- DataTable ---------- */
.dt-wrap { overflow: auto; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.dt thead th { position: sticky; top: 0; background: var(--panel2); z-index: 2; }
.dt thead tr.dt-filters th { top: 30px; padding: 3px 8px; background: var(--panel); }
.dt-filters input, .dt-filters select { width: 100%; min-width: 46px;
  background: var(--surf-bg); color: var(--text); border: 1px solid var(--border);
  border-radius: 5px; padding: 2px 6px; font-size: 11.5px; }
.dt-filters input::placeholder { color: var(--faint); }
th.num, td.num { text-align: right; }
tr.clickable { cursor: pointer; }
tr.clickable:hover td { background: var(--surf-hover); }
.dt-foot { display: flex; gap: 10px; align-items: center; margin-top: 6px;
  color: var(--faint); font-size: 12px; }
.btn-sm { background: var(--surf-hover); color: var(--muted); cursor: pointer;
  border: 1px solid var(--border); border-radius: 6px; padding: 3px 10px; font-size: 12px; }
.btn-sm:hover { color: var(--text); border-color: var(--border2); }
.dt-cards { display: flex; flex-direction: column; gap: 8px; }
.dt-card { background: var(--surf-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 12px; }
.dt-card-t { font-weight: 650; margin-bottom: 4px; }
.dt-card-r { display: flex; justify-content: space-between; font-size: 12.5px;
  padding: 1.5px 0; }
.dt-card-r .k { color: var(--faint); }

/* ---------- ChartCard / flyouts ---------- */
.chartcard .strip-h { display: flex; align-items: center; gap: 10px; }
.cc-menu, .cogchip { position: relative; display: inline-flex; align-items: center; gap: 2px; }
.btn-icon { background: transparent; color: var(--faint); border: 1px solid transparent;
  border-radius: 6px; cursor: pointer; padding: 2px 7px; font-size: 12px; }
.btn-icon:hover, .btn-icon.on { color: var(--text); background: var(--surf-hover);
  border-color: var(--border); }
.flyout { position: absolute; right: 0; top: calc(100% + 6px); z-index: 30;
  background: var(--surf-popover); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 10px 12px; min-width: 190px;
  box-shadow: 0 8px 24px rgba(0,0,0,.45); display: flex; flex-direction: column; gap: 7px; }
.flyrow { display: flex; align-items: center; gap: 8px; font-size: 12.5px;
  color: var(--muted); white-space: nowrap; }
.flyrow input[type="number"] { width: 72px; background: var(--surf-bg);
  color: var(--text); border: 1px solid var(--border); border-radius: 5px;
  padding: 2px 6px; }
.chart-tall { height: 520px; }

/* ---------- FilterBar ---------- */
.filterbar { position: relative; }
.fchip { background: var(--surf-card); color: var(--muted); cursor: pointer;
  border: 1px solid var(--border); border-radius: 999px; padding: 4px 12px;
  font-size: 12.5px; display: inline-flex; align-items: center; gap: 6px; }
.fchip:hover { color: var(--text); border-color: var(--border2); }
.fchip.on { color: var(--text); background: var(--accent-dim); border-color: var(--accent); }
.fchip .cnt { background: var(--surf-popover); border-radius: 999px; padding: 0 7px;
  font-size: 11px; color: var(--faint); }
.fchip.on .cnt { color: var(--text); }
.fsearch { background: var(--surf-card); color: var(--text); border: 1px solid var(--border);
  border-radius: 999px; padding: 4px 14px; font-size: 12.5px; width: 160px; }
.fsearch:focus { outline: none; border-color: var(--border2); }
.fsort { background: var(--surf-card); color: var(--muted); border: 1px solid var(--border);
  border-radius: 7px; padding: 4px 8px; font-size: 12.5px; width: auto; max-width: 190px;
  flex: 0 0 auto; align-self: center; margin: 0; }

/* ---------- help tooltips ---------- */
.qhelp { display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; margin-left: 6px; border-radius: 50%;
  background: var(--surf-popover); color: var(--faint); font-size: 10px;
  cursor: help; position: relative; text-transform: none; letter-spacing: 0;
  vertical-align: middle; }
.qhelp:hover, .qhelp:focus { color: var(--text); }
.qhelp:hover::after, .qhelp:focus::after { content: attr(data-tip);
  position: absolute; left: 50%; transform: translateX(-50%); bottom: calc(100% + 8px);
  width: 260px; background: var(--surf-popover); color: var(--text);
  border: 1px solid var(--border2); border-radius: var(--radius-sm);
  padding: 8px 10px; font-size: 12px; line-height: 1.45; z-index: 40;
  white-space: normal; font-weight: 400; text-align: left;
  box-shadow: 0 8px 24px rgba(0,0,0,.5); }
@media (max-width: 640px) {
  .qhelp:hover::after, .qhelp:focus::after { left: auto; right: -10px; transform: none; }
}

/* ---- v7 append: map layers, windy embed, scorecards, heatmap ---- */
:root {
  --map-land: #1a2030; --map-border: #2a3245; --map-ring-idle: #6b7488;
}
.maptools { margin: 0 0 8px; }
.windyframe { width: 100%; height: 520px; border: 0; border-radius: 10px;
  display: block; background: var(--panel); }
@media (max-width: 640px) { .windyframe { height: 340px; } }
.toprow { display: flex; gap: 12px; align-items: baseline; }
/* scorecards (Performance macro/nowcast) */
.sc-row { display: flex; gap: 10px; align-items: baseline; padding: 6px 0;
  border-bottom: 1px solid var(--line, var(--border)); }
.sc-row:last-of-type { border-bottom: none; }
.sc-row .k { min-width: 92px; color: var(--muted); font-size: 12.5px; }
.sc-row .v { font-size: 17px; font-weight: 650; }
.sc-row .s { color: var(--faint); font-size: 11.5px; }
.chip.health-warn { background: rgba(232,163,61,.16); color: var(--amber-bright); }
/* city × bin MAE heatmap */
.heatmap td.hm-cell { font-weight: 600; }
.heatmap tbody tr.clickable { cursor: pointer; }
.heatmap tbody tr.clickable:hover td:first-child { text-decoration: underline; }
