.survey-form-section {
    margin-bottom: 25px;
}
.survey-option {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}
.survey-option:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-color: #d0d0d0;
}
.survey-option input[type="radio"] {
    margin-top: 4px;
    margin-right: 12px;
    min-width: 18px;
    height: 18px;
}
.survey-option label {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
    cursor: pointer;
    width: 100%;
}
.survey-option input[type="radio"]:checked + label {
    font-weight: 600;
}
.survey-option:has(input[type="radio"]:checked) {
    border-color: #6e45e2;
    background-color: #f8f5ff;
}
.mt-30 {
    margin-top: 30px;
}

#pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.page-indicator {
    font-size: 16px;
    font-weight: 500;
    margin: 0 15px;
}

.mr-10 {
    margin-right: 10px;
}

.survey-question {
    margin-bottom: 30px;
}

.btn--theme-outline {
    background-color: transparent;
    border: 1px solid #6e45e2;
    color: #6e45e2;
}

.btn--theme-outline:hover {
    background-color: #f8f5ff;
}