/**
 * MCQ Styling
 */
.mcq-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.mcq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    display: block;
}

.mcq-answers {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 1.5rem 0 !important;
}

.mcq-answers li {
    padding: 10px 15px;
    border-radius: 8px;
    background: #f7fafc;
    margin-bottom: 8px;
    border: 1px solid #edf2f7;
    cursor: pointer;
    transition: all 0.2s;
}

.mcq-answers li:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

/* Result Styles */
.mcq-container.answered .mcq-option {
    pointer-events: none;
    cursor: default;
}

.mcq-option.correct {
    background: #f0fff4 !important;
    border-color: #48bb78 !important;
    color: #2f855a !important;
}

.mcq-option.correct .mcq-option-prefix {
    background: #48bb78;
    color: #fff;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
}

.mcq-option.wrong {
    background: #fff5f5 !important;
    border-color: #f56565 !important;
    color: #c53030 !important;
}

.mcq-option.wrong .mcq-option-prefix {
    background: #f56565;
    color: #fff;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
}

.mcq-option-prefix {
    font-weight: 700;
    margin-right: 8px;
}

/* New Refined Feedback Styles */
.mcq-status-msg {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.correct-msg {
    color: #2f855a;
}

.wrong-msg {
    color: #c53030;
}

.mcq-discuss-link {
    color: #e65100;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 1rem 0;
    display: inline-block;
}

.mcq-discuss-link:hover {
    text-decoration: underline;
}

.mcq-explanation-box {
    background: #e9ecef;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.explanation-title {
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #4a5568;
    font-size: 1.25rem;
}

.mcq-explanation-content {
    color: #4a5568;
    line-height: 1.6;
}

.mcq-check-btn {
    background: #2d3748;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.mcq-check-btn:hover {
    background: #1a202c;
}