/* ==========================================================================
   Audix Dashboard - Shared styles for the Mission Control audit dashboard.
   ========================================================================== */

/* Health Score Ring Gauge
   ========================================================================== */

.health-score-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.health-ring {
    display: block;
    width: 100%;
    height: auto;
    max-width: 200px;
}

.health-ring__progress {
    transition: stroke-dashoffset 1.2s ease-out 0.3s;
}

.health-score-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.health-score-overlay .score-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--mud-palette-text-primary);
}

.health-score-overlay .score-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.25rem;
    color: var(--mud-palette-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Breakpoints
   ========================================================================== */

@media (max-width: 599px) {
    .health-score-card {
        max-width: 160px;
        min-width: 80px;
        margin: 0 auto;
    }

    .health-score-overlay .score-number {
        font-size: 2rem;
    }

    .health-score-overlay .score-label {
        font-size: 0.75rem;
    }
}
