﻿.gauge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

    .gauge-container svg text {
        fill: var(--text) !important;
    }

.gauge-label {
    font-size: 16px;
    font-weight: bold;
    color: var(--text);
    margin-top: 5px;
}

.gauge {
    width: 200px;
    height: 200px;
    margin-bottom: -30px; 
}

@media (max-width: 768px) {
    .gauge-container {
        margin-bottom: 20px; 
    }

    .gauge {
        width: 150px; 
        height: 150px;
    }

    div[style*="display: grid;"] {
        grid-template-columns: 1fr !important; 
    }
}
