body.map-page {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.map-header {
  min-height: 46px;
  gap: 10px;
  padding: 0 12px;
  flex-shrink: 0;
  z-index: 1000;
}

.map-brand {
  min-width: 0;
}

.map-brand .site-brand-mark {
  font-size: 16px;
  animation: spin 8s linear infinite;
}

.map-brand .site-brand-text {
  font-size: 13px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hstats {
  display: flex;
  gap: 6px;
  margin-left: auto;
  align-items: center;
  flex-shrink: 0;
}

.sp {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--surf2);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 10px;
  white-space: nowrap;
}

.sp-link {
  text-decoration: none;
  color: inherit;
}

.sp-link:hover {
  background: #eff6ff;
  border-color: var(--acc);
}

.sd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sn {
  font-weight: 700;
  color: var(--txt);
}

.sl {
  color: var(--mut);
}

.src-b,
.legal-link,
#data-status {
  font-size: 9px;
  color: var(--mut);
  background: var(--surf2);
  border: 1px solid var(--brd);
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap;
}

.legal-link {
  text-decoration: none;
}

.legal-link:hover,
.legal-link:focus-visible {
  color: #334155;
  background: #eef2f7;
  border-color: #cbd5e1;
}

.mob-btn,
.panel-visibility-btn {
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brd);
  border-radius: 10px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--txt);
  font: inherit;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.mob-btn {
  margin-left: auto;
  flex-shrink: 0;
}

.mob-btn:hover,
.panel-visibility-btn:hover {
  background: #eff6ff;
  border-color: #bfd2fb;
  color: #1d4ed8;
}

#data-status {
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

#data-status:hover {
  background: #eff6ff;
  border-color: var(--acc);
}

#data-status.ok {
  color: var(--op);
}

#data-status.err {
  color: var(--off);
}

.main {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
}

.sidebar {
  width: 220px;
  min-width: 220px;
  flex-shrink: 0;
  background: var(--surf);
  border-right: 1px solid var(--brd);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: width 0.25s, min-width 0.25s, transform 0.25s, border-color 0.25s;
  z-index: 900;
}

.sidebar.is-hidden {
  width: 0;
  min-width: 0;
  border-right-color: transparent;
}

.ss {
  padding: 10px 12px;
  border-bottom: 1px solid var(--brd);
}

.st {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mut);
  margin-bottom: 8px;
}

.st-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.st-row .st {
  margin-bottom: 0;
}

.scope-toggle {
  border: 1px solid var(--brd);
  background: var(--surf2);
  color: var(--mut);
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 8px;
  line-height: 1.4;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scope-toggle:hover {
  background: var(--surf);
}

.scope-toggle.on {
  border-color: var(--acc);
  color: #1d4ed8;
  background: #eff6ff;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fb {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--brd);
  border-radius: 5px;
  padding: 5px 9px;
  cursor: pointer;
  color: var(--txt);
  font-family: var(--fm);
  font-size: 11px;
  text-align: left;
  transition: all 0.12s;
}

.fb:hover {
  background: var(--surf2);
}

.fb.active {
  background: #eff6ff;
  border-color: var(--acc);
  color: #1d4ed8;
}

.fdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fc {
  margin-left: auto;
  font-size: 9px;
  color: var(--mut);
  background: var(--bg);
  padding: 1px 5px;
  border-radius: 3px;
}

.sx {
  width: 100%;
  background: var(--surf2);
  border: 1px solid var(--brd);
  border-radius: 5px;
  padding: 6px 9px;
  color: var(--txt);
  font-size: 11px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.sx:focus {
  border-color: var(--acc);
  background: var(--surf);
}

.sx::placeholder {
  color: var(--mut);
}

.year-picker {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  gap: 6px;
  align-items: center;
}

.year-step {
  width: 32px;
  height: 32px;
  border: 1px solid var(--brd);
  border-radius: 10px;
  background: var(--surf2);
  color: var(--txt);
  font: inherit;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.year-step:hover {
  background: #eff6ff;
  border-color: #bfd2fb;
  color: #1d4ed8;
}

.year-step:disabled {
  opacity: 0.4;
  cursor: default;
  background: var(--surf2);
  color: var(--mut);
  border-color: var(--brd);
}

.ss .mini-reset {
  margin-top: 8px;
  padding: 5px 10px;
}

.year-note {
  margin-top: 6px;
  font-size: 9px;
  color: var(--mut);
  line-height: 1.5;
}

.sel-hint {
  padding: 0 10px 6px;
  font-size: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mut);
  line-height: 1.4;
}

.pl {
  flex: 1;
  overflow-y: auto;
  padding: 4px 6px;
  -webkit-overflow-scrolling: touch;
}

.pl::-webkit-scrollbar {
  width: 3px;
}

.pl::-webkit-scrollbar-thumb {
  background: var(--brd);
  border-radius: 2px;
}

.pi {
  padding: 6px 9px;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 1px;
}

.pi:hover {
  background: var(--surf2);
}

.pn {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--txt);
}

.pm {
  font-size: 9px;
  color: var(--mut);
  margin-top: 1px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.pdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.noR {
  text-align: center;
  color: var(--mut);
  font-size: 11px;
  padding: 20px;
}

.loading {
  text-align: center;
  color: var(--mut);
  font-size: 11px;
  padding: 30px 16px;
  line-height: 1.8;
}

#map {
  width: 100%;
  height: 100%;
}

.leaflet-container {
  background: #d4e6f1 !important;
}

.leaflet-control-zoom {
  border: 1px solid var(--brd) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
}

.leaflet-control-zoom a {
  background: var(--surf) !important;
  color: var(--txt) !important;
  border-color: var(--brd) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--surf2) !important;
}

.leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.85) !important;
  color: var(--mut) !important;
  font-size: 8px !important;
}

.map-link-control {
  border: none !important;
  box-shadow: none !important;
  background: transparent;
}

.map-link-button {
  border: 1px solid var(--brd);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--mut);
  font: inherit;
  font-size: 10px;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.12);
}

.map-link-button:hover {
  background: #eff6ff;
  border-color: var(--acc);
  color: #1d4ed8;
}

.map-link-button:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.map-legend {
  position: absolute;
  bottom: 62px;
  left: 226px;
  background: var(--surf);
  border: 1px solid var(--brd);
  border-radius: 6px;
  padding: 7px 11px;
  z-index: 400;
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  max-width: calc(100vw - 240px);
}

.li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--mut);
  white-space: nowrap;
}

.ld {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.time-layer {
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  z-index: 720;
  display: block;
  width: min(920px, calc(100% - 170px));
  pointer-events: none;
}

.time-layer[hidden] {
  display: none;
}

.time-layer.nuclear-live-band {
  --nlb-bg: linear-gradient(90deg, #0f2c52 0%, #1c5b95 45%, #164572 100%);
  --nlb-text: #eff7ff;
  --nlb-muted: #c6dcf6;
  --nlb-update: #38bdf8;
  border: 1px solid rgba(102, 179, 235, 0.38);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 24px rgba(18, 58, 102, 0.22);
  padding: 4px 12px 7px;
  min-height: 28px;
}

.time-layer .nlb-row {
  min-height: 17px;
  justify-content: center;
  position: relative;
  padding-right: 92px;
}

.time-layer .nlb-pill {
  background: var(--nlb-update);
  color: #f8fdff;
}

.time-layer-copy {
  font-size: 11px;
  color: var(--nlb-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 0 1 auto;
  text-align: center;
  max-width: 100%;
}

.time-layer-clear {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  border: 1px solid rgba(198, 220, 246, 0.45);
  background: rgba(9, 27, 50, 0.28);
  color: var(--nlb-text);
  border-radius: 999px;
  padding: 2px 8px;
  font: inherit;
  font-size: 10px;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
}

.time-layer-clear:hover {
  background: rgba(9, 27, 50, 0.52);
  border-color: rgba(239, 247, 255, 0.7);
}

.time-layer-clear[hidden] {
  display: none;
}

/* ── Bottom Panel (replaces floating .info and .vp-info) ── */
.bottom-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
  background: var(--surf);
  border-top: 1px solid var(--brd);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, opacity 0.2s;
}

.bottom-panel[data-hidden="true"] {
  transform: translateY(calc(100% + 12px));
  opacity: 0;
  pointer-events: none;
}

.panel-visibility-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 650;
}

.panel-visibility-btn.is-panel-hidden {
  background: #eff6ff;
  border-color: #bfd2fb;
  color: #1d4ed8;
}

.bp-drag-handle {
  width: 36px;
  height: 4px;
  background: var(--brd);
  border-radius: 2px;
  margin: 8px auto 0;
  flex-shrink: 0;
  cursor: ns-resize;
  touch-action: none;
  transition: background 0.12s, width 0.12s;
}

.bp-drag-handle:hover {
  width: 44px;
  background: #94a3b8;
}

.bp-bar {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px 0 14px;
  cursor: pointer;
  gap: 8px;
  flex-shrink: 0;
  user-select: none;
}

.bp-bar-text {
  font-size: 11px;
  color: var(--txt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.bp-expand-btn {
  width: 22px;
  height: 22px;
  border: 1px solid var(--brd);
  border-radius: 50%;
  background: var(--surf2);
  color: var(--mut);
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.12s, color 0.12s;
}

.bp-expand-btn:hover {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfd2fb;
}

.bottom-panel[data-expanded="true"] .bp-expand-btn {
  transform: rotate(90deg);
}

.bp-sections {
  display: none;
  flex-direction: row;
  flex: 1;
  min-height: 0;
  border-top: 1px solid var(--brd);
  overflow: hidden;
}

.bottom-panel[data-expanded="true"] .bp-sections {
  display: flex;
}

.bottom-panel[data-expanded="true"] {
  min-height: 180px;
  height: clamp(180px, var(--bp-height, min(380px, 55dvh)), 82dvh);
  max-height: 82dvh;
  overflow: hidden;
}

.bp-section {
  flex: 1;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  max-height: none;
}

body.is-resizing-bottom-panel {
  user-select: none;
  cursor: ns-resize;
}

body.is-resizing-bottom-panel .bp-drag-handle {
  width: 44px;
  background: #94a3b8;
}

.bp-section + .bp-section {
  border-left: 1px solid var(--brd);
}

.bp-section::-webkit-scrollbar {
  width: 3px;
}

.bp-section::-webkit-scrollbar-thumb {
  background: var(--brd);
  border-radius: 2px;
}

@media (min-width: 681px) {
  .bottom-panel[data-state="reactor"] #bpReactorSection { order: 1; }
  .bottom-panel[data-state="reactor"] #bpStatsSection { order: 2; border-left: 1px solid var(--brd); }
  .bottom-panel[data-state="reactor"] .bp-section + .bp-section { border-left: none; }
}


/* Lift leaflet bottom controls above compact bar */
.leaflet-bottom.leaflet-left,
.leaflet-bottom.leaflet-right {
  bottom: 54px;
}

.ih {
  padding: 12px 14px;
  border-bottom: 1px solid var(--brd);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: sticky;
  top: 0;
  background: var(--surf);
  z-index: 1;
}

.in {
  font-size: 16px;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.3;
  margin-right: 8px;
}

.info-stealth-link {
  color: inherit;
  text-decoration: none;
  font: inherit;
  font-weight: inherit;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.12s ease, text-shadow 0.12s ease, color 0.12s ease;
}

.info-stealth-link--title {
  display: inline-block;
}

.ih:hover .info-stealth-link--title,
.irow:hover .info-stealth-link,
.info-stealth-link:hover,
.info-stealth-link:focus-visible {
  border-bottom-color: currentColor;
  text-shadow: 0 0 0 currentColor;
}

.info-stealth-link:focus-visible {
  outline: none;
}

.ic {
  font-size: 11px;
  color: var(--mut);
  margin-top: 2px;
}

.clean-firm-pill-link {
  text-decoration: none;
  color: inherit;
}

.clean-firm-pill-link[hidden] {
  display: none;
}

.clean-firm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border: 1px solid #dbe4f3;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(20, 35, 50, 0.06);
  white-space: nowrap;
}

.clean-firm-pill-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a7890;
  font-weight: 700;
}

.clean-firm-pill-icon {
  font-size: 11px;
  line-height: 1;
}

.clean-firm-pill-value {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.84);
}


.ix {
  background: var(--surf2);
  border: 1px solid var(--brd);
  color: var(--mut);
  cursor: pointer;
  font-size: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ix:hover {
  color: var(--txt);
}

.ib {
  padding: 12px 14px;
}

.isb {
  margin-bottom: 10px;
}

.ibdg {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ir {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.irow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid var(--brd);
  padding-bottom: 4px;
}

.irow:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ik {
  font-size: 10px;
  color: var(--mut);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  flex-shrink: 0;
}

.iv {
  min-width: 0;
  text-align: right;
  word-break: break-word;
  font-size: 12px;
  color: var(--txt);
  font-weight: 600;
}

.iv-with-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.iv-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.iv-sub {
  font-size: 10px;
  line-height: 1.35;
  color: var(--mut);
  text-transform: none;
  letter-spacing: 0;
}

.mini-chevron {
  width: 18px;
  height: 18px;
  border: 1px solid var(--brd);
  border-radius: 50%;
  background: var(--surf2);
  color: var(--mut);
  font-size: 12px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, background 0.12s, color 0.12s;
}

.mini-chevron:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

.mini-chevron.is-open {
  transform: rotate(90deg);
  color: #1d4ed8;
  border-color: #9fb7ea;
  background: #e8f0ff;
}

.unit-pop {
  margin-top: 10px;
  border: 1px solid var(--brd);
  border-radius: 8px;
  background: var(--surf2);
  padding: 8px;
}

.unit-pop[hidden] {
  display: none;
}

.unit-pop-title {
  font-size: 10px;
  color: var(--mut);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.unit-pop-wrap {
  overflow-x: auto;
}

.unit-pop-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 10px;
}

.unit-pop-table th,
.unit-pop-table td {
  padding: 5px 6px;
  border-bottom: 1px dashed #d6deea;
  text-align: left;
  white-space: nowrap;
}

.unit-pop-table th {
  font-size: 9px;
  color: var(--mut);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.manual-link-mini {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.manual-link-mini[hidden] {
  display: none;
}

.manual-link-mini-splash {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--brd);
  background: #e2e8f0;
}

.manual-link-mini-splash img {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.manual-link-mini-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 11px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  border-radius: 10px;
  color: #1d4ed8;
  text-decoration: none;
}

.manual-link-mini-card:hover {
  background: #dbeafe;
  border-color: #93c5fd;
}

.manual-link-mini-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
  padding: 3px;
  border: 1px solid #dbeafe;
}

.manual-link-mini-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.manual-link-mini-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.manual-link-mini-text {
  font-size: 12px;
  font-weight: 700;
  color: #1d4ed8;
  line-height: 1.3;
}

.manual-link-mini-arrow {
  font-size: 16px;
  line-height: 1;
  color: #1d4ed8;
}

.itime-note {
  margin-top: 10px;
  padding: 8px 10px;
  background: #fff7ed;
  border-radius: 4px;
  font-size: 10px;
  color: #9a3412;
  line-height: 1.6;
  border-left: 3px solid #fdba74;
  --info-collapsible-bg: #fff7ed;
}

.itime-note[hidden] {
  display: none;
}

.inote {
  margin-top: 10px;
  padding: 8px 10px;
  background: var(--surf2);
  border-radius: 4px;
  font-size: 10px;
  color: var(--mut);
  line-height: 1.6;
  border-left: 3px solid var(--brd);
  --info-collapsible-bg: var(--surf2);
}

.itime-note .info-collapsible-text,
.inote .info-collapsible-text {
  white-space: pre-line;
  word-break: break-word;
}

.itime-note.is-collapsed .info-collapsible-text,
.inote.is-collapsed .info-collapsible-text {
  display: -webkit-box;
  line-clamp: var(--info-clamp-lines, 6);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--info-clamp-lines, 6);
  overflow: hidden;
  position: relative;
  padding-right: 18px;
}

.itime-note.is-collapsed .info-collapsible-text::after,
.inote.is-collapsed .info-collapsible-text::after {
  content: '...';
  position: absolute;
  right: 0;
  bottom: 0;
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--info-collapsible-bg) 45%);
}

.info-collapsible-toggle {
  margin-top: 8px;
  border: none;
  background: transparent;
  color: #1d4ed8;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.info-collapsible-toggle:hover {
  text-decoration: underline;
}

.isrc {
  margin-top: 8px;
  font-size: 9px;
  color: var(--mut);
  text-align: right;
}

.ov {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 850;
}

.ov.vis {
  display: block;
}

.vp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vp-tt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 3px 0;
  border-bottom: 1px solid var(--brd);
  font-size: 11px;
}

.vp-tt-row:last-child {
  border-bottom: none;
}

.vp-tt-key {
  color: var(--mut);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vp-tt-val {
  font-weight: 700;
  color: var(--txt);
  text-align: right;
}

.vp-tt-row-s {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 3px 0;
  border-bottom: 1px solid var(--brd);
  font-size: 11px;
}

.vp-tt-row-s:last-child {
  border-bottom: none;
}

.vp-tt-s-left {
  flex: 1;
  color: var(--mut);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vp-tt-s-mid {
  color: var(--mut);
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  padding: 0 10px;
}

.vp-tt-s-right {
  font-weight: 700;
  color: var(--txt);
  text-align: right;
  white-space: nowrap;
  font-size: 11px;
}

@media (max-width: 960px) {
  .src-b {
    display: none;
  }

  .sl {
    display: none;
  }

  .sp {
    padding: 3px 7px;
  }
}

@media (max-width: 680px) {
  .hstats {
    display: none;
  }

  .mob-btn {
    margin-left: auto;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    height: 100dvh;
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar.is-hidden {
    width: 220px;
    min-width: 220px;
    border-right-color: var(--brd);
  }

  .time-layer {
    top: 0;
    width: calc(100% - 16px);
  }

  .map-legend {
    left: 6px;
    bottom: 62px;
    max-width: calc(100vw - 12px);
  }

  .bp-sections {
    flex-direction: column;
  }

  .bp-section {
    max-height: none;
  }

  .bp-section + .bp-section {
    border-left: none;
    border-top: 1px solid var(--brd);
  }
}
