/* Premium Pill Styling for Survey Options */
.survey-pill-wrapper input[type="radio"],
.survey-pill-wrapper input[type="checkbox"] {
    display: none;
}

.survey-pill-label {
    display: block;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.survey-pill-wrapper input:checked + .survey-pill-label {
    background: #FFB6C1;
    color: white;
    border-color: #FFB6C1;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
}

.survey-pill-label:hover {
    background: rgba(255, 182, 193, 0.1);
    border-color: #FFB6C1;
}

.survey-other-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, margin 0.35s ease;
}

.survey-other-panel.is-open {
    max-height: 8rem;
    margin-top: 0.75rem;
}
