/**
 * Assessment Form Styles
 */

.assessment-form-wrapper {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
}

.assessment-notes {
    background: #fff8e1;
    border-left: 4px solid #f0c040;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 18px;
    font-size: 0.95em;
    line-height: 1.6;
    color: #3d3000;
}

.assessment-completed-message {
    color: #27ae60;
    font-weight: 500;
    margin-bottom: 15px;
}

.assessment-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Category sections */
.assessment-category-section {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.assessment-category-title {
    color: #13263A;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #EAC81F;
}

.assessment-question {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.assessment-question:last-child {
    margin-bottom: 0;
}

.assessment-question.unanswered {
    border-left: 3px solid #e74c3c;
    padding-left: 10px;
}

.question-label {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.option-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.option-wrapper input[type="radio"] {
    cursor: pointer;
}

.option-wrapper label {
    cursor: pointer;
    margin: 0;
    font-size: 15px;
    color: #555;
}

.option-wrapper input[type="radio"]:checked + label {
    font-weight: 600;
    color: #333;
}

.assessment-submit-btn {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.assessment-submit-btn:hover:not(:disabled) {
    background-color: #005a87;
}

.assessment-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.assessment-success {
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.assessment-success p {
    margin: 8px 0;
    font-size: 16px;
    color: #27ae60;
}

.assessment-success strong {
    color: #1b5e20;
}
