/* --- Star Rating Styles --- */

.comment-form-rating {
    margin-bottom: 15px;
}

.comment-rating-stars {
    display: inline-block;
    direction: ltr; /* חשוב כדי שהכוכבים יסתדרו משמאל לימין */
    unicode-bidi: bidi-override;
}

.comment-rating-stars input[type="radio"] {
    display: none; /* הסתרת כפתורי הרדיו */
}

.comment-rating-stars label {
    font-size: 24px; /* גודל הכוכבים */
    color: #ddd;    /* צבע כוכב כבוי */
    cursor: pointer;
    display: inline-block;
    padding: 0 2px;
}

.comment-rating-stars label:hover,
.comment-rating-stars label:hover ~ label,
.comment-rating-stars input[type="radio"]:checked ~ label {
    color: #ffc107; /* צבע כוכב מואר (צהוב/זהב) */
}