.rating-stars {
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.rating-stars .star {
    font-size: 2rem;
    color: #ccc;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.rating-stars .star:hover,
.rating-stars .star.active {
    color: #ffd700;
}

.rating-info {
    text-align: center;
    margin-top: 10px;
    font-size: 1rem;
}
