/* Basic styling for the rating stars */
.eztc-rating-stars .eztc-star {
    display: inline-block;
    font-size: 24px;
    cursor: pointer;
    color: transparent;            /* No fill by default */
    -webkit-text-stroke: 1px gray; /* gray outline */
    margin-right: 5px;
    transition: color 0.2s;
}

/* Filled star with black outline */
.eztc-rating-stars .eztc-star.filled {
    color: #FFD700;                /* Yellow color */
    -webkit-text-stroke: 1px gray;
}

/* Half-filled star with black outline */
.eztc-rating-stars .eztc-star.half-filled {
    position: relative;
    color: #FFD700;
    -webkit-text-stroke: 1px gray;
}

/* Hover state for stars (darker shade) */
.eztc-rating-stars .eztc-star.hovered {
    color: #FFCC00; /* Darker yellow */
    -webkit-text-stroke: 1px black;
}

/* Container styling */
.eztc-ratings-block,
.eztc-ratings-elementor {
    margin: 10px 0;
}