:root {
  --bg-950: #07131b;
  --bg-900: #0e1c26;
  --bg-880: #0e1c26e6;
  --bg-850: #0e1c26d1;
  --bg-820: #0c212ed6;
  --surface-1: #0d2330cc;
  --surface-2: #0a1b26e6;
  --brand-300: #98f7eb;
  --brand-400: #74efde;
  --brand-500: #49e2ce;
  --brand-600: #2bc9b4;
  --brand-700: #1a9f90;
  --text-strong: #e7fffb;
  --text-main: #c7e6e8;
  --text-muted: #9bbec5;
  --text-subtle: #7fa3ad;
  --line-soft: #49e2ce38;
  --line-mid: #49e2ce61;
  --line-strong: #49e2ce8f;
  --shadow-panel: 0 16px 30px #030b1285, inset 0 0 0 1px #74efde14;
  --shadow-glow: 0 0 24px #49e2ce2e;
  --focus-ring: 0 0 0 2px #49e2ce61;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "Roboto Mono", "Consolas", "Noto Sans SC", "Microsoft YaHei", monospace;
  --transition-fast: .18s ease-out;
  --transition-base: .26s cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html, body, #root {
  width: 100%;
  height: 100%;
  font-family: var(--font-body);
  color: var(--text-main);
  scrollbar-color: #49e2cebf #09161fdb;
  scrollbar-width: thin;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: radial-gradient(circle at 50% -35%, #49e2ce33 0%, #0e1c26db 40%, #08141e 100%), linear-gradient(#112734 0%, #0e1c26 42%, #08141e 100%);
  margin: 0;
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(#07151eeb, #050f18f0);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#6defdfe0, #23a293e0);
  border: 1px solid #97f2e540;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#8ff7ebeb, #33c2b0e6);
}

::selection {
  color: #06231f;
  background: #74efded9;
}

button, input, select, textarea {
  font: inherit;
}

button:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

input:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

select:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

textarea:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

.dashboard-root {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.dashboard-root:after {
  content: "";
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(#0611190a 0%, #0611194d 100%), repeating-linear-gradient(90deg, #49e2ce05 0 1px, #0000 1px 120px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.matte-frame {
  border: 1px solid var(--line-mid);
  box-shadow: var(--shadow-panel), 0 0 18px #49e2ce14;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
}

.dashboard-header {
  z-index: 4;
  pointer-events: none;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.header-ribbon {
  pointer-events: auto;
  filter: saturate(1.08);
  background-image: url(/static/image/bg.7c4a5142.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 82px;
  padding: 0 14vw;
  display: flex;
}

.header-ribbon h1 {
  letter-spacing: .08em;
  color: var(--text-strong);
  text-shadow: 0 0 14px #49e2ce61, 0 3px 14px #050f189e;
  white-space: nowrap;
  margin: 0;
  font-size: max(22px, min(2.25vw, 40px));
  font-weight: 700;
}

.dashboard-main {
  z-index: 3;
  pointer-events: none;
  grid-template-columns: 360px 1fr 360px;
  gap: 12px;
  display: grid;
  position: absolute;
  top: 82px;
  bottom: 44px;
  left: 12px;
  right: 12px;
}

.left-column, .right-column {
  pointer-events: auto;
  gap: 12px;
  min-height: 0;
  display: grid;
}

.left-column {
  grid-column: 1;
  grid-template-rows: auto minmax(160px, .9fr) minmax(130px, .75fr) minmax(150px, 1fr);
}

.left-column .panel, .left-column .tab-btn {
  font-family: var(--font-body);
}

.left-column .tab-btn {
  letter-spacing: .02em;
}

.right-column {
  grid-column: 3;
  grid-template-rows: 1fr;
}

.panel {
  border-radius: var(--radius-lg);
  flex-direction: column;
  min-height: 0;
  padding: 10px 12px 12px;
  display: flex;
  overflow: hidden;
}

.panel-title-row {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  display: flex;
}

.panel-title {
  color: var(--text-strong);
  letter-spacing: .06em;
  border-left: 3px solid var(--brand-500);
  text-shadow: 0 0 12px #49e2ce2e;
  margin: 0 0 8px;
  padding-left: 8px;
  font-size: 17px;
  font-weight: 700;
}

.panel-title-inline {
  margin: 0;
}

@media (max-width: 1320px) {
  .dashboard-main {
    grid-template-columns: 294px 1fr 294px;
  }
}

@media (max-width: 1100px) {
  html, body, #root {
    overflow: auto;
  }

  .dashboard-root {
    height: auto;
    min-height: 100%;
  }

  .dashboard-header {
    display: block;
    position: relative;
  }

  .header-ribbon {
    background-size: 100% 100%;
    width: 100vw;
    height: max(58px, min(10vw, 82px));
    padding: 0 10vw;
  }

  .dashboard-main {
    flex-direction: column;
    padding: 8px 10px 14px;
    display: flex;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .left-column, .right-column {
    grid-template-rows: none;
  }

  .timeline-panel, .left-column .panel, .right-column .panel {
    max-height: 300px;
  }
}

.stats-group {
  pointer-events: auto;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  display: grid;
}

.left-stats {
  margin-bottom: 2px;
}

.stat-card {
  border-radius: var(--radius-md);
  flex-direction: column;
  gap: 4px;
  min-height: 70px;
  padding: 8px 10px 10px;
  display: flex;
  overflow: hidden;
}

.stat-label {
  color: var(--text-muted);
  letter-spacing: .03em;
  font-size: 13px;
  font-weight: 500;
}

.stat-main {
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  display: inline-flex;
}

.stat-value {
  letter-spacing: .03em;
  color: var(--brand-400);
  font-size: max(24px, min(2.2vw, 32px));
  line-height: 1;
  font-family: var(--font-mono);
  text-shadow: 0 0 14px #49e2ce70;
  white-space: nowrap;
  font-weight: 700;
  display: inline-block;
}

.stat-unit {
  white-space: nowrap;
  color: var(--text-subtle);
  letter-spacing: .03em;
  font-size: 13px;
  font-family: var(--font-mono);
}

.data-panel {
  min-height: 0;
}

.data-panel .bar-list {
  padding-right: 2px;
}

.zone-list {
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  overflow: auto;
}

.zone-row {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  background: linear-gradient(90deg, #0f2635bd, #0a1b27b8);
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  display: flex;
}

.zone-row:hover {
  border-color: var(--line-mid);
  box-shadow: inset 0 0 0 1px #98f7eb14;
}

.zone-row.is-real {
  background: linear-gradient(90deg, #1d4d5fe6, #0b2835e0);
  border-color: #49e2ced1;
  box-shadow: inset 0 0 0 1px #74efde38, 0 0 14px #49e2ce24;
}

.zone-row.is-real .zone-name, .zone-row.is-real .zone-values {
  color: var(--text-strong);
  font-weight: 700;
}

.zone-name {
  letter-spacing: .03em;
  color: var(--text-main);
  align-items: center;
  gap: 8px;
  font-size: 13px;
  display: inline-flex;
}

.zone-dot {
  background: var(--dot-color);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px color-mix(in srgb, var(--dot-color) 70%, transparent);
  border-radius: 2px;
}

.zone-values {
  letter-spacing: .02em;
  color: var(--text-muted);
  font-size: 12px;
  font-family: var(--font-mono);
}

.tabs-panel {
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  display: flex;
}

.tab-header {
  flex-shrink: 0;
  gap: 8px;
  margin-left: auto;
  display: flex;
}

.tab-btn {
  border: 1px solid var(--line-mid);
  color: var(--text-muted);
  cursor: pointer;
  min-width: 76px;
  height: 30px;
  transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  background: linear-gradient(#0f2838c2, #0b1d28d1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.tab-btn:hover {
  color: var(--text-strong);
  border-color: var(--line-strong);
}

.tab-btn:focus-visible {
  box-shadow: var(--focus-ring);
}

.tab-btn.active {
  color: #042823;
  background: linear-gradient(180deg, #71f0df 0%, var(--brand-500) 55%, var(--brand-600) 100%);
  border-color: #0000;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px #e7fffb57, 0 0 16px #49e2ce57;
}

.bar-list {
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  overflow: auto;
}

.bar-row {
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 8px;
  display: grid;
}

.bar-label {
  color: var(--text-main);
  letter-spacing: .03em;
  font-size: 13px;
}

.bar-track {
  background: #0e2837d6;
  border: 1px solid #49e2ce47;
  border-radius: 999px;
  width: 100%;
  height: 12px;
  overflow: hidden;
}

.bar-fill {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-700) 0%, var(--brand-500) 62%, #87f5e6 100%);
  height: 100%;
  transition: width var(--transition-base);
  display: block;
  box-shadow: 0 0 10px #49e2ce73;
}

.bar-row.is-real .bar-label, .bar-row.is-real .bar-value {
  color: var(--text-strong);
  font-weight: 700;
}

.bar-row.is-real .bar-track {
  border-color: #74efde94;
  box-shadow: inset 0 0 0 1px #74efde33;
}

.bar-row.is-real .bar-fill {
  background: linear-gradient(90deg, #57e8d6 0%, #b4fff4 100%);
  box-shadow: 0 0 12px #7af0e2a3;
}

.bar-value {
  color: var(--text-muted);
  letter-spacing: .02em;
  min-width: 108px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  text-align: right;
}

.team-list {
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  overflow: auto;
}

.team-row {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  background: linear-gradient(160deg, #0e2634cc, #0b1c28db);
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  display: flex;
}

.team-row:hover {
  border-color: var(--line-mid);
  box-shadow: inset 0 0 0 1px #74efde1f;
}

.team-unit {
  letter-spacing: .02em;
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 700;
}

.team-meta, .team-metric {
  letter-spacing: .01em;
  color: var(--text-muted);
  margin-top: 2px;
  font-size: 12px;
}

.team-metric {
  font-family: var(--font-mono);
}

.team-status {
  letter-spacing: .02em;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-width: 64px;
  height: 24px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.status-稳定 {
  color: #8bffef;
  background: #2298863d;
  border: 1px solid #60e7d380;
}

.status-巡查中 {
  color: #a0d2ff;
  background: #3466a842;
  border: 1px solid #7eadea7a;
}

.status-保障中 {
  color: #f8d79f;
  background: #956c2c3d;
  border: 1px solid #dab16c75;
}

.timeline-panel {
  min-height: 0;
  overflow: hidden;
}

.timeline-list {
  gap: 12px;
  margin: 0;
  padding: 2px 6px 2px 22px;
  list-style: none;
  display: grid;
  overflow: hidden auto;
}

.timeline-item {
  padding-left: 6px;
  position: relative;
}

.timeline-item:after {
  content: "";
  background: linear-gradient(#49e2ce70, #49e2ce1a);
  border-radius: 999px;
  width: 1px;
  position: absolute;
  top: 20px;
  bottom: -12px;
  left: -7px;
}

.timeline-item:last-child:after {
  display: none;
}

.timeline-node {
  border: 2px solid var(--brand-500);
  background: #0d2734;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 20px;
  left: -12px;
  box-shadow: 0 0 0 2px #49e2ce29;
}

.timeline-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  width: 100%;
  min-width: 0;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  background: linear-gradient(120deg, #0f2838e6, #0b1e2ae6);
  padding: 10px 12px 11px;
  box-shadow: inset 0 0 0 1px #49e2ce14;
}

.timeline-item:hover .timeline-card {
  border-color: var(--line-mid);
  box-shadow: inset 0 0 0 1px #49e2ce24, 0 6px 16px #050d1657;
}

.timeline-head {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  display: flex;
}

.timeline-time {
  font-family: var(--font-mono);
  color: var(--text-strong);
  letter-spacing: .01em;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
}

.timeline-badge {
  color: #adf8eef2;
  letter-spacing: .02em;
  background: #49e2ce1f;
  border: 1px solid #49e2ce57;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  font-size: 11px;
  display: inline-flex;
}

.timeline-meta-grid {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 6px 8px;
  min-width: 0;
  margin-bottom: 8px;
  display: grid;
}

.timeline-chip {
  width: 100%;
  min-width: 0;
  min-height: 22px;
  color: var(--text-muted);
  letter-spacing: .01em;
  background: #0c1f2af0;
  border: 1px solid #49e2ce33;
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  font-size: 12px;
  line-height: 1;
  display: inline-flex;
  overflow: hidden;
}

.timeline-chip svg {
  color: #74efdedb;
  flex: none;
}

.timeline-chip-label {
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}

.timeline-desc {
  color: var(--text-main);
  text-align: left;
  word-break: break-word;
  letter-spacing: .01em;
  font-size: 14px;
  line-height: 1.45;
}

.timeline-meta-grid, .timeline-desc {
  font-family: var(--font-mono);
}

.selection-summary {
  z-index: 6;
  border-radius: var(--radius-md);
  pointer-events: auto;
  min-width: 210px;
  max-width: 280px;
  padding: 10px 32px 10px 12px;
  position: absolute;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
}

.selection-summary-meta {
  font-family: var(--font-mono);
  color: var(--text-muted);
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  display: flex;
}

.selection-summary-count {
  color: var(--brand-400);
  font-weight: 700;
}

.selection-summary-value {
  font-family: var(--font-mono);
  letter-spacing: .03em;
  color: var(--text-strong);
  text-shadow: 0 0 10px #49e2ce52;
  margin-top: 5px;
  font-size: 21px;
  font-weight: 700;
}

.selection-clear-btn {
  border: 1px solid var(--line-soft);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  background: #0a1c28a8;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  font-size: 9px;
  display: flex;
  position: absolute;
  top: 8px;
  right: 8px;
}

.selection-clear-btn:hover {
  border-color: var(--line-strong);
  color: var(--text-strong);
  background: #0f2e3fe0;
}

.selection-clear-btn:focus-visible {
  box-shadow: var(--focus-ring);
}

@media (prefers-reduced-motion: reduce) {
  .bar-fill, .zone-row, .team-row, .timeline-card, .tab-btn, .selection-clear-btn {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .stats-group {
    grid-template-columns: 1fr 1fr;
  }

  .selection-summary {
    min-width: 170px;
    max-width: 240px;
    position: fixed;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.dashboard-map-layer {
  z-index: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.dashboard-map {
  width: 100%;
  height: 100%;
}

.leaflet-tile-pane {
  filter: brightness(.64) contrast(1.24) saturate(.72) hue-rotate(3deg);
}

.map-zoom-pad {
  z-index: 900;
  gap: 6px;
  display: grid;
  position: absolute;
  bottom: 18px;
  right: 16px;
}

.map-zoom-btn {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-mid);
  width: 34px;
  height: 34px;
  color: var(--text-strong);
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
  background: linear-gradient(#0d2432d1, #0a1b27e6);
  font-size: 22px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px #98f7eb14, 0 6px 14px #040c1366;
}

.map-zoom-btn:hover {
  border-color: var(--line-strong);
  background: linear-gradient(#123243e6, #0c2430eb);
  box-shadow: inset 0 0 0 1px #98f7eb29, 0 0 16px #49e2ce42;
}

.map-zoom-btn:focus-visible {
  box-shadow: var(--focus-ring);
}

.leaflet-container {
  font: inherit;
  background: none;
}

.leaflet-control-container {
  display: none;
}

.leaflet-overlay-pane svg path.greenland-polygon {
  transform-origin: center;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
  animation: 2.6s ease-in-out infinite polygon-breathe;
}

.leaflet-overlay-pane svg path.greenland-polygon.is-selected {
  filter: drop-shadow(0 0 10px #a8fff5db) drop-shadow(0 0 4px #49e2ceb8);
  animation: none;
  stroke: #d8fff8 !important;
  stroke-width: 4.2px !important;
  stroke-opacity: 1 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  fill: #1f7f74 !important;
  fill-opacity: .82 !important;
}

@keyframes polygon-breathe {
  0%, 100% {
    stroke: #49e2ce;
    stroke-width: 1.15px;
    stroke-opacity: .46;
    fill: #1f7f74;
    fill-opacity: .1;
  }

  50% {
    stroke: #67ebda;
    stroke-width: 1.95px;
    stroke-opacity: .74;
    fill: #1f7f74;
    fill-opacity: .28;
  }
}

@media (prefers-reduced-motion: reduce) {
  .leaflet-overlay-pane svg path.greenland-polygon {
    animation: none;
  }

  .map-zoom-btn {
    transition: none;
  }
}

.leaflet-interactive:focus, .leaflet-container:focus, .leaflet-container svg:focus, .leaflet-container path:focus {
  outline: none !important;
}

.leaflet-rich-popup .leaflet-popup-content-wrapper {
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-md);
  min-width: 270px;
  max-width: 332px;
  color: var(--text-main);
  background: linear-gradient(160deg, #102736f5, #0a1e2bf5);
  box-shadow: inset 0 0 0 1px #74efde1f, 0 8px 22px #0611198f;
}

.leaflet-rich-popup .leaflet-popup-content {
  margin: 10px 12px;
}

.leaflet-rich-popup .leaflet-popup-tip {
  background: #102736f5;
  border: 1px solid #49e2ce3d;
}

.leaflet-rich-popup .polygon-tip-title {
  color: var(--text-strong);
  word-break: break-word;
  border-bottom: 1px solid #49e2ce33;
  margin-bottom: 8px;
  padding-bottom: 7px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.leaflet-rich-popup .polygon-tip-list {
  gap: 5px;
  display: grid;
}

.leaflet-rich-popup .polygon-tip-row {
  grid-template-columns: 58px 1fr;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  line-height: 1.35;
  display: grid;
}

.leaflet-rich-popup .polygon-tip-label {
  color: var(--text-subtle);
  letter-spacing: .01em;
}

.leaflet-rich-popup .polygon-tip-value {
  color: var(--text-muted);
  word-break: break-word;
  min-width: 0;
}

.leaflet-rich-popup .polygon-tip-row.is-metric .polygon-tip-value {
  color: #d9fef9;
  font-family: var(--font-mono);
  letter-spacing: .01em;
}

@media (max-width: 700px) {
  .leaflet-rich-popup .leaflet-popup-content-wrapper {
    min-width: 232px;
    max-width: 286px;
  }

  .leaflet-rich-popup .polygon-tip-row {
    grid-template-columns: 52px 1fr;
    gap: 6px;
  }
}

@media (max-width: 1100px) {
  .dashboard-map-layer {
    position: fixed;
  }

  .dashboard-map {
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    height: 42vh;
    min-height: 42vh;
    margin: 0 10px;
  }
}

.status-bar {
  z-index: 5;
  border-top: 1px solid var(--line-soft);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  pointer-events: none;
  background: linear-gradient(#0a18218f, #08131ce6);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  height: 34px;
  padding: 0 12px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.status-left {
  align-items: center;
  gap: 14px;
  min-width: 0;
  display: inline-flex;
}

.status-item {
  font-family: var(--font-mono);
  letter-spacing: .02em;
  color: var(--text-muted);
  white-space: nowrap;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  display: inline-flex;
}

.status-right {
  white-space: nowrap;
  color: var(--text-muted);
  align-items: center;
  gap: 6px;
  margin-left: auto;
  display: inline-flex;
}

.status-copy {
  font-family: var(--font-mono);
  letter-spacing: .02em;
  color: var(--text-muted);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .status-bar {
    flex-wrap: wrap;
    row-gap: 4px;
    height: auto;
    min-height: 34px;
    padding: 6px 10px;
    position: fixed;
  }

  .status-left {
    flex-wrap: wrap;
    gap: 10px;
  }

  .status-item, .status-copy {
    font-size: 11px;
  }
}

