.enquete-progress-bar {
    height: 6px;
    border-radius: 3px;
    background: #e8f0ea;
    overflow: hidden;
}

.enquete-progress-fill {
    height: 100%;
    width: 11%;
    background: linear-gradient(90deg, #015B2A, #2c9e52);
    transition: width .3s ease;
}

.enquete-progress-label {
    margin-top: .5rem;
    font-size: .85rem;
    color: #555;
    text-align: center;
}

.rating-grid-title {
    font-size: 1rem;
    font-weight: 600;
    color: #015B2A;
    margin-bottom: .25rem;
}

.rating-grid-caption {
    font-size: .8rem;
    color: #777;
    margin-bottom: .75rem;
}

.rating-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}

.rating-table th {
    font-weight: 600;
    color: #015B2A;
    text-align: center;
    padding: 8px 6px;
    border-bottom: 2px solid #e8f0ea;
    white-space: nowrap;
}

.rating-table td {
    padding: 10px 6px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.rating-row-label {
    min-width: 180px;
}

.rating-radio {
    width: 18px;
    height: 18px;
    accent-color: #015B2A;
    cursor: pointer;
}

.scale-options,
.choice-options {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.scale-option,
.choice-option {
    display: flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: .5rem .8rem;
    cursor: pointer;
    font-size: .85rem;
    background: #fff;
    transition: border-color .15s, background .15s;
}

.scale-option:has(input:checked),
.choice-option:has(input:checked) {
    border-color: #015B2A;
    background: #eaf6ee;
}

.choice-options {
    flex-direction: column;
    align-items: flex-start;
}

.choice-autre-input {
    max-width: 240px;
    display: inline-block;
    margin-left: .5rem;
}

.nps-scale {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}

.nps-option {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    background: #fff;
}

.nps-option:has(input:checked) {
    border-color: #015B2A;
    background: #015B2A;
    color: #fff;
}

.scale-option input,
.choice-option input[type="radio"],
.nps-option input {
    accent-color: #015B2A;
}

@media (max-width: 480px) {
    .nps-option { width: 36px; height: 36px; font-size: .78rem; }
    .rating-row-label { min-width: 140px; font-size: .8rem; }
}
