.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    width: 30px;
    height: 30px;
    font-size: 30px;
    color: #ccc;
    transition: color 0.2s;
}

.star-rating label:before {
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffc107;
}

.star-rating input:checked ~ label:before,
.star-rating label:hover:before,
.star-rating label:hover ~ label:before {
    font-weight: 900;
}

/* Yorum yıldızları */
.comment-rating .fa-star {
    color: #ffc107;
    margin-right: 2px;
}