﻿.recommendation-rating-block
{
    text-align : center;
    font-weight : bold;
}

.bad
{
color : red;
}

.neutral {
    color : #B0CED1;
}

.good {
    color: #2ca02c
}
.rating-feedback {
    text-align: center;
}

.rating-stars {
    padding-top: 20px;
}

    .rating-stars ul {
        list-style: none;
        padding: 0;
        display: flex;
        gap: 6px;
        justify-content: center;
        margin-bottom: 0;
    }

.rating-stars li.star svg {
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: transform .2s ease, fill .2s ease, stroke .2s ease;
    fill: transparent;
    stroke: #f59e0b;
    stroke-width: 2;
}

/* Hover / Selected scale */
.rating-stars li.star.hover svg,
.rating-stars li.star.selected svg {
    transform: scale(1.3);
}

 
.rating-stars li.star.selected svg {
    fill: #f59e0b;
}

/* Invalid highlight */
.survey-rating.invalid {
    outline: 2px solid #ef4444;
    border-radius: 8px;
    padding: 6px;
}
