/* Star Rating CSS */

/* Star rating display */
.testimonial-rating {
    display: inline-flex;
    margin-bottom: 10px;
}

.testimonial-rating .star {
    color: #ccc;
    font-size: 20px;
    margin-right: 2px;
}

.testimonial-rating .star.active {
    color: #FFD700; /* Gold color for active stars */
}

/* Star rating selection in form */
.rating-stars {
    display: inline-flex;
    margin-bottom: 15px;
    cursor: pointer;
}

.rating-stars .star {
    color: #ccc;
    font-size: 24px;
    margin-right: 5px;
    transition: all 0.2s ease;
}

.rating-stars .star:hover,
.rating-stars .star.hover {
    transform: scale(1.2);
}

.rating-stars .star.active,
.rating-stars .star.hover {
    color: #FFD700; /* Gold color for active/hover stars */
}

/* Rating label */
.rating-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

/* Hide the actual input */
input[name="rating"] {
    display: none;
}
