.odp-pr-rating-form-wrapper {
    text-align: center;
    padding: 20px;
}

#odp-pr-star-rating {
    font-size: 14px;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
}

.rating-stars input[type="radio"] {
    display: none;
}

.rating-stars label {
    font-size: 2em;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-stars input[type="radio"]:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #FFD700;
}

.rating-submit-button {
    margin-top: 10px;
    padding: 8px 16px;
    font-size: 1em;
    color: #ffffff;
    background-color: #0073aa;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.rating-submit-button:hover {
    background-color: #005982;
}

.rating-feedback {
    margin-top: 15px;
    color: #0073aa;
    font-size: 0.9em;
}
