.star-rating-container{
    width:100%;
}
.star-rating {
    display: flex;
    flex-direction: row-reverse; /* To allow CSS selectors to style previous elements */
    justify-content: start;
}

.star-rating input {
    display: none; /* Hide the default radio buttons */
}

.star-rating label {
    font-size: 2em; /* Adjust star size */
    color: #ccc; /* Default star color */
    cursor: pointer;
    padding: 0 5px;
}

.star-rating input:checked ~ label {
    color: gold; /* Color of selected stars */
}

