/* Extracted from restaurants\show.blade.php (block 1) */
.star-rating-input {
display: flex;
flex-direction: row-reverse;
justify-content: flex-end;
gap: 0.25rem;
}

.star-rating-input input {
display: none;
}

.star-rating-input label {
font-size: 1.75rem;
color: #ddd;
cursor: pointer;
transition: color 0.2s;
}

.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
color: #f5b342;
}