/* Style global du bloc d'avis */
.json-supplier-reviews {
    background: #fdfdfd;
    border: 1px solid #e5e5e5;
    padding: 20px;
}

/* Conteneur des étoiles */
.supplier-star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 15px;
}

/* Masquer les boutons radio natifs */
.supplier-star-rating input[type="radio"] {
    display: none;
}

/* Style de base des étoiles (grises) */
.supplier-star-rating label {
    font-size: 2rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: color 0.2s ease;
    margin-right: 5px;
}

/* Utilisation d'un caractère étoile Unicode */
.supplier-star-rating label:before {
    content: "\2605";
}

/* Coloration des étoiles sélectionnées et survolées (jaunes) */
.supplier-star-rating input[type="radio"]:checked ~ label,
.supplier-star-rating label:hover,
.supplier-star-rating label:hover ~ label {
    color: #fbbf24;
}

/* Badge d'affichage des notes dans la liste */
.review-item .badge-star {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: -2px;
}
