.rating-stars {
    display: inline-flex;
    gap: 2px;
    direction: ltr;
}

.rating-stars .star {
    font-size: 18px;
    color: #ffd700;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.rating-stars .star.empty {
    color: #e4e4e4;
}

.rating-stars .star:before {
    display: inline;
    font-family: FontAwesome;
    content: "\f005";
}