    .gauge-container {
        position: relative;
        width: 200px;
        height: 200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gauge {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        position: relative;
        background: conic-gradient(
            from 0deg,
            var(--gauge-color) var(--fill-percentage),
            #e0e0e0 var(--fill-percentage)
        );
        transition: all 0.8s ease;
    }

    .gauge::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        background: white;
        border-radius: 50%;
    }

    .gauge-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 10;
    }

    .gauge-score {
        font-weight: bold;
        color: #333;
        line-height: 1;
    }

    .score-value {
        font-size: 2.2em;
        color: var(--gauge-color);
        transition: color 0.8s ease;
    }

    .score-total {
        font-size: 1.2em;
        color: #666;
    }
	
	.accordion-button:focus {
	  box-shadow: none;
	  outline: none;
	}
