


/** бордер в бургер меню **/
.navbar-toggler {
padding: 0.5rem 0.75rem;
background-color: transparent;
border: none !important;
outline: none !important;
box-shadow: none !important;
}
/** стили для svg иконок в feedback **/
.rating-stars {
display: flex;
gap: 5px;
cursor: pointer;
}
.star {
width: 30px;
height: 30px;
fill: #ccc;
transition: fill 0.2s ease;
}
.star.hover {
fill: #f5d479; /* при наведении */
}
.star.active {
fill: #f5b301; /* выбранный рейтинг */
}