/* 06-components/_statusbar.css */
/* ── c-statusbar — the fixed bottom F-key bar. Doubles as global footer. */
.c-statusbar {
  grid-row: 3;
  z-index: var(--z-bar);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: var(--bar-h);
  padding-inline: var(--space-sm);
  background: var(--panel);
  border-top: var(--bw) solid var(--line);
  font-size: var(--text-xs);
  overflow-x: auto;
  white-space: nowrap;
}
.c-statusbar__key { color: var(--accent); font-weight: var(--fw-bold); }
.c-statusbar__label { color: var(--text-muted); margin-left: 0.5ch; }
.c-statusbar__cell { color: var(--text); flex: none; }
.c-statusbar__spacer { flex: 1; }
.c-statusbar__stat { color: var(--text-dim); }
.c-statusbar__stat b { color: var(--good); font-weight: var(--fw-bold); }
