/* Escala de calificación de la encuesta de satisfacción (NPS) */

.nps-rating {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.nps-rating-star {
    padding: 0;
    border: none;
    background: none;
    line-height: 0;
    cursor: pointer;
}

.nps-rating-star svg {
    width: 40px;
    height: 40px;
    fill: var(--color-disabled, #d3d3d3);
    transition: fill .15s ease-in-out;
}

.nps-rating-star:hover svg,
.nps-rating-star:focus svg {
    fill: var(--color-primary-hover, #333333);
}

.nps-rating-star.selected svg {
    fill: var(--color-primary, #ffc107);
}

.nps-rating-labels {
    display: flex;
    justify-content: space-between;
    max-width: 440px;
    margin-bottom: 24px;
    font-size: 12px;
    color: var(--color-text-secondary, #6c757d);
}

@media (max-width: 575px) {
    .nps-rating-star svg {
        width: 28px;
        height: 28px;
    }

    .nps-rating-labels {
        max-width: 100%;
    }
}
