.rjwp--star-rating .rating {
    cursor: pointer;
}
/* Style for the star */
.rjwp-star {
    display: inline-block;
    font-size: 30px;
    cursor: pointer;
    color: #ccc; /* Default star color */
    transition: color 0.2s;
}

.rjwp-star:before {
    content: "\2605"; /* Unicode star character */
}

/* Change color on hover */
.rjwp-star:hover,
.rjwp-star:hover ~ .rjwp-star {
    color: #f5b301; /* Hover color */
}

/* Keep stars filled based on selection */
/* .rjwp-star.active,
.rjwp-star.active ~ .rjwp-star {
    color: #f5b301;
} 
*/

.rjwp-rtstar {
    color: #ccc; /* Default color for the stars */
}

.rjwp-rtstar.active {
    color: #f5b301; /* Filled color for the active stars */
}

.rating-status-show .rjwp-ovstar {
    font-size: 24px; /* Adjust size as needed */
    color: #ccc; /* Default color for the stars */
}

.rating-status-show-active .rjwp-ovstar {
    color: #f39c12; /* Filled color for the stars */
}
