
/* ===============================
   QUESTION CONTAINER
================================ */
.qe-question {
    margin-bottom: 28px;
}

.qe-question-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* ===============================
   OPTION BOXES (BASE)
================================ */
.qe-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qe-option input[type="radio"] {
    margin-top: 3px;
}

/* ===============================
   CORRECT OPTION (GREEN)
================================ */
.qe-option.correct {
    background-color: #e9f9ef !important;
    border: 1px solid #2ecc71 !important;
}

.qe-option.correct span {
    color: #1e8449;
    font-weight: 600;
}

/* ===============================
   WRONG OPTION (RED)
================================ */
.qe-option.wrong {
    background-color: #fdeaea !important;
    border: 1px solid #e74c3c !important;
}

.qe-option.wrong span {
    color: #c0392b;
    font-weight: 600;
}

/* ===============================
   DISABLED STATE AFTER SUBMIT
================================ */
.qe-option input:disabled {
    cursor: not-allowed;
}

.qe-option input:disabled + span {
    cursor: not-allowed;
}

/* ===============================
   EXPLANATION BOX
================================ */
.qe-explanation {
    margin-top: 14px;
    padding: 14px 16px;
    background: #f3f7ff;
    border-left: 4px solid #3b82f6;
    border-radius: 6px;
    font-size: 14px;
    color: #1f2937;
}

/* ===============================
   TIMER
================================ */
#qe-timer {
    font-weight: 600;
    margin-bottom: 20px;
}

/* ===============================
   SUBMIT BUTTON
================================ */
#qe-submit-btn {
    padding: 12px 22px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

#qe-submit-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

/* ===============================
   SUMMARY BOX
================================ */
.qe-summary-box {
    margin-top: 32px;
    padding: 22px;
    background: #f0f9ff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
}