.rating-stars {
    display: inline-block;
    font-size: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.rating-stars .star {
    color: #ccc;
    transition: color 0.2s;
    display: inline-block;
}

.rating-stars .star.hovered,
.rating-stars .star:hover {
    color: #f5b301;
}

.rating-stars .rating-meta {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.2rem;
}

.rating-message {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.rating-message.success {
    color: green;
}

.rating-message.error {
    color: red;
}