
.centerContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-bar-container {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.score-bar-label {
    width: 80px;
    font-weight: bold;
    margin-right: 10px;
}
.score-bar {
    flex-grow: 1;
    height: 20px;
    background-color: #fefefe;
    border-radius: 5px;
    overflow: hidden;
}
.score-bar-fill {
    height: 100%;
    background-color: #4caf50;
    width: 0; /* La largeur sera définie dynamiquement */
    transition: width 0.3s ease;
}

.note {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}