/* ═══════════════════════════════════════════════════
   Health Dashboard — Customer Health Overview
   ═══════════════════════════════════════════════════ */

.health-dashboard {
    max-width: 1100px;
    margin: 0 auto;
}

.hd-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #e4e6eb;
    margin: 0 0 4px;
}

.hd-subtitle {
    color: #8b8d94;
    font-size: 13px;
    margin: 0 0 20px;
}

/* ─── Stats ───────────────────────────────────────── */
.hd-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.hd-stat {
    background: #1e2030;
    border: 1px solid #2d3045;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.hd-stat-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.hd-stat-value {
    font-size: 26px;
    font-weight: 700;
    color: #e4e6eb;
}

.hd-stat-label {
    font-size: 11px;
    color: #8b8d94;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 4px;
}

.hd-stat-danger .hd-stat-value {
    color: #ff5c5c;
}

.hd-stat-good .hd-stat-value {
    color: #52d49a;
}

/* ─── Sections ────────────────────────────────────── */
.hd-section {
    background: #1e2030;
    border: 1px solid #2d3045;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 16px;
}

.hd-section h3 {
    font-size: 15px;
    font-weight: 600;
    color: #e4e6eb;
    margin: 0 0 14px;
}

.hd-badge {
    display: inline-block;
    padding: 1px 8px;
    background: rgba(255, 92, 92, .15);
    color: #ff5c5c;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 6px;
}

/* ─── Category Bars ───────────────────────────────── */
.hd-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.hd-bar-label {
    width: 160px;
    font-size: 13px;
    color: #d0d2db;
    flex-shrink: 0;
}

.hd-bar-track {
    flex: 1;
    height: 22px;
    background: #151728;
    border-radius: 6px;
    overflow: hidden;
}

.hd-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.5s ease;
    min-width: 2px;
}

.hd-bar-count {
    width: 70px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #e4e6eb;
    flex-shrink: 0;
}

.hd-bar-pct {
    font-size: 11px;
    font-weight: 400;
    color: #8b8d94;
}

/* ─── Table wrap ──────────────────────────────────── */
.hd-table-wrap {
    overflow-x: auto;
}

/* ─── Alerts ──────────────────────────────────────── */
.hd-alerts-wrap {
    max-height: 300px;
    overflow-y: auto;
}

.hd-alert-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #23253a;
    align-items: flex-start;
}

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

.hd-alert-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.hd-alert-body {
    font-size: 13px;
    color: #d0d2db;
}

.hd-alert-detail {
    font-size: 12px;
    color: #8b8d94;
    margin-top: 2px;
}

/* ─── Empty ───────────────────────────────────────── */
.hd-empty {
    text-align: center;
    padding: 30px;
    color: #8b8d94;
    font-size: 14px;
}