/* /status page — per-component health rows with a colored dot signal
   on the left and detail line on the right. Three states: ok (green
   filled dot), warn (orange ring), down (red filled dot). Matches the
   Stripe / GitHub Status / Linear conventions for system-status pages. */

.status-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-2) var(--gap-4);
  align-items: baseline;
  justify-content: space-between;
  padding: var(--gap-3) 0;
  border-bottom: 1px solid var(--rule);
}
.status-row:last-child { border-bottom: 0; }

.status-row__main { display: inline-flex; align-items: center; gap: var(--gap-2); }
.status-row__dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  display: inline-block;
}
.status-row--ok   .status-row__dot { background: var(--ok); }
.status-row--warn .status-row__dot { background: var(--warn); }
.status-row--down .status-row__dot { background: var(--err); }
