.health-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--border);
    font-size: var(--caption);
}

.health-item:last-child {
    border-bottom: none;
}

.health-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.health-dot.online,
.health-dot.healthy {
    background: var(--success);
}

.health-dot.offline,
.health-dot.degraded {
    background: var(--danger);
}

.health-dot.cooldown {
    background: var(--warning);
}

.health-dot.unknown {
    background: var(--text-dim);
}

.health-label {
    flex: 1;
    min-width: 0;
    font-weight: var(--weight-medium);
    color: var(--text-primary);
}

.health-status {
    font-size: var(--xs);
    color: var(--text-muted);
    text-transform: capitalize;
}
