@import url('jquery.mCustomScrollbar.min.css');

.rating {
    display: inline-block;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 30px;
    padding: 0 5px;
    float: right;
    cursor: pointer;
    color: grey; /* Default color for stars */
}

.rating label:before {
    content: '\2605'; /* Unicode character for a star */
}

.rating input:checked ~ label:before {
    content: '\2605'; /* Filled star */
    color: rgb(255, 174, 0); /* Change color to yellow for selected stars */
}

