/* Questionnaire Page Styles */
.questionnaire-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-color);
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-right: 15px;
}

/* Questionnaire-specific section title override */
.questionnaire-section .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    text-align: left;
}

.section-description {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.25);
}

.progress-bar {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.questionnaire-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 140px 0 40px;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.color-option:hover {
    transform: scale(1.1);
    border-color: #333;
}

.color-option.selected {
    border-color: var(--primary-color);
    transform: scale(1.15);
}

.file-upload-area {
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    background-color: #f8f9fa;
}

.file-upload-area.dragover {
    background-color: rgba(15, 118, 110, 0.1);
}