.star-rating {
    direction: rtl;
}

.star-rating label {
    color: gray;
    font-size: 24px;
    cursor: pointer;
    transition: color 200ms;
}

.star-rating input[type="radio"]:checked ~ label {
    color: #ffc107;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffc107;
}
