.system-health-summary {
  margin: -2px 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.system-health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.health-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(134, 219, 220, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.health-card strong {
  font-size: 15px;
}

.health-card span,
.health-card small {
  color: var(--muted);
  line-height: 1.45;
}

.health-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.health-card[data-status="ok"] .health-badge {
  background: rgba(72, 213, 151, 0.16);
  color: #78efba;
}

.health-card[data-status="warn"] .health-badge {
  background: rgba(247, 197, 107, 0.16);
  color: #ffd98a;
}

.health-card[data-status="bad"] .health-badge {
  background: rgba(240, 110, 105, 0.16);
  color: #ff9a96;
}

.health-card[data-status="unknown"] .health-badge {
  background: rgba(145, 170, 180, 0.16);
  color: #c7d6dc;
}
