/* ── Status Bar ───────────────────────────────────── */

#status-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: var(--bg-statusbar);
  border-top: 1px solid var(--border-panel);
  font-size: 12px;
  color: var(--text-muted);
}

#status-coords {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  user-select: text;
  cursor: text;
  font-variant-numeric: tabular-nums;
}

#status-text.status-active {
  color: var(--accent-yellow);
}

.status-right {
  color: var(--text-faint);
  font-size: 11px;
  white-space: nowrap;
  cursor: default;
}

.status-right.crs-active {
  color: var(--accent-blue);
}

.status-right.crs-warning {
  color: var(--accent-orange);
}
