/* Status — the "online" pill/dot and the monospace version pill. */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
}
.pill {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-faint);
}
.pill-lg {
  font-size: 13px;
}
