/* Status (v2) screen — DRK-7910.
   Deliberately thin: the layout, cards, key/value rows, tiles and status palette all come from
   health.css (the internal-diagnostics look built in DRK-7893), so both screens stay identical.
   Only what that file has no equivalent for lives here. */

/* Card heading with the service badge pinned to the right. */
.status-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Counter tiles get the same tone as the badge they count. */
.status-tile__num--ok {
  color: var(--md-content-positive-bold);
}

.status-tile__num--ko {
  color: var(--md-content-negative-bold);
}

.status-tile__num--disabled {
  color: var(--md-content-caution-bold);
}

/* "Off by configuration" needs saying, or an amber badge reads as a warning. */
.status-card__note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--md-content-tertiary);
}

/* Placeholder while the probe block is still in flight. */
.status-pending {
  color: var(--md-content-tertiary);
  font-size: 13px;
}
