.gauge-container {
    text-align: center;
}

.gauge {
    width: 300px;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.gauge-fill {
    height: 100%;
    background-color: #76c7c0;
    transition: width 0.3s ease-in-out;
}

.gauge-label {
    font-size: 18px;
}