/* Card styles */
.card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 1rem;
    padding: 1.5rem;
}
.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #e5e7eb;
    letter-spacing: -0.01em;
}

/* Labels and values */
.label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.value {
    color: #f3f4f6;
}

/* Status rows */
.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: #0d1117;
    border-radius: 0.5rem;
}

/* Badges */
.badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-weight: 500;
}
.badge-ok {
    background: #064e3b;
    color: #6ee7b7;
}
.badge-warn {
    background: #78350f;
    color: #fbbf24;
}
.badge-danger {
    background: #7f1d1d;
    color: #fca5a5;
}
.badge-pending {
    background: #1e293b;
    color: #64748b;
}
.badge-neutral {
    background: #1e293b;
    color: #94a3b8;
}

/* Gauge animation */
#gauge-arc {
    transition: stroke-dashoffset 0.3s ease-out;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .gauge-container {
        transform: scale(0.85);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
