/* Frontend Survey Styles */
.fixed-survey {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.survey-description {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.survey-question {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.survey-question h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 18px;
}

.survey-question .required {
    color: #e74c3c;
    margin-left: 5px;
}

.survey-option {
    display: block;
    margin-bottom: 12px;
    padding: 8px 0;
    cursor: pointer;
}

.survey-option input {
    margin-right: 10px;
}

.survey-text-answer {
    width: 100%;
    min-height: 120px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.survey-submit {
    background: #3498db;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.survey-submit:hover {
    background: #2980b9;
}

.survey-error {
    color: #e74c3c;
    padding: 15px;
    background: #fdeaea;
    border-left: 4px solid #e74c3c;
    margin-bottom: 20px;
}