/* ================================
   Objectiva MCQ Module
================================ */

.objectiva-mcq-question {
    margin: 18px auto;
    max-width: 900px;
}

.objectiva-mcq-card {
    background: #ffffff;
    border: 1px solid #d9e7ff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.objectiva-mcq-question-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.objectiva-mcq-number {
    font-size: 13px;
    font-weight: 800;
    color: #1f5da8;
    background: #eef4ff;
    border: 1px solid #d9e7ff;
    border-radius: 999px;
    padding: 6px 12px;
}

.objectiva-mcq-question-text {
    font-size: 18px;
    line-height: 1.5;
    color: #1f2a44;
    font-weight: 700;
    margin-bottom: 16px;
}

.objectiva-mcq-question-text p {
    margin-top: 0;
}

.objectiva-mcq-options {
    display: grid;
    gap: 10px;
}

.objectiva-mcq-option {
    width: 100%;
    border: 1px solid #d9e7ff;
    background: #ffffff;
    color: #1f2a44;
    border-radius: 14px;
    padding: 12px;
    cursor: pointer;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: start;
    text-align: left;
    box-shadow: 0 3px 8px rgba(0,0,0,0.04);
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.objectiva-mcq-option:hover {
    transform: translateY(-1px);
    background: #f8fbff;
}

.objectiva-mcq-option-label {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eef4ff;
    color: #1f5da8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.objectiva-mcq-option-text {
    font-weight: 600;
    line-height: 1.45;
}

.objectiva-mcq-option-text p {
    margin: 0;
}

.objectiva-mcq-option.is-selected {
    border-color: #1f5da8;
    background: #eef4ff;
}

.objectiva-mcq-option.is-correct {
    border-color: #17803d;
    background: #f3fff6;
}

.objectiva-mcq-option.is-correct .objectiva-mcq-option-label {
    background: #17803d;
    color: #ffffff;
}

.objectiva-mcq-option.is-wrong {
    border-color: #c62828;
    background: #fff4f4;
}

.objectiva-mcq-option.is-wrong .objectiva-mcq-option-label {
    background: #c62828;
    color: #ffffff;
}

.objectiva-mcq-option.is-disabled {
    cursor: not-allowed;
}

.objectiva-mcq-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 16px 0 10px;
    flex-wrap: wrap;
}

.objectiva-mcq-check-btn,
.objectiva-mcq-reset-btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 800;
}

.objectiva-mcq-check-btn {
    background: #1f5da8;
    color: #ffffff;
}

.objectiva-mcq-reset-btn {
    background: #eef2ff;
    color: #1f2a44;
}

.objectiva-mcq-feedback {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
    text-align: center;
}

.objectiva-mcq-feedback.is-correct,
.objectiva-mcq-feedback.is-wrong {
    display: flex;
}

.objectiva-mcq-feedback.is-correct {
    background: #17803d;
    color: #ffffff;
}

.objectiva-mcq-feedback.is-wrong {
    background: #c62828;
    color: #ffffff;
}

.objectiva-mcq-explanation {
    margin-top: 14px;
    background: #f8fbff;
    border: 1px solid #d9e7ff;
    border-radius: 14px;
    padding: 14px;
    color: #1f2a44;
}

.objectiva-mcq-explanation strong {
    display: block;
    margin-bottom: 6px;
    color: #1f5da8;
}

@media (max-width: 768px) {
    .objectiva-mcq-card {
        padding: 13px;
        border-radius: 14px;
    }

    .objectiva-mcq-question-text {
        font-size: 16px;
    }

    .objectiva-mcq-option {
        grid-template-columns: 34px 1fr;
        padding: 10px;
    }

    .objectiva-mcq-option-label {
        width: 29px;
        height: 29px;
    }

    .objectiva-mcq-check-btn,
    .objectiva-mcq-reset-btn {
        width: 100%;
    }
}
/* ================================
   MCQ Spot Evaluation Status
================================ */

.objectiva-mcq-mini-score {
    font-size: 13px;
    font-weight: 800;
    color: #1f2a44;
    background: #ffffff;
    border: 1px solid #d9e7ff;
    border-radius: 999px;
    padding: 6px 12px;
}

.objectiva-mcq-status-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 14px;
}

.objectiva-mcq-status-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.objectiva-mcq-attempts-box {
    border: 1px solid #ffd37a;
    color: #7a4a00;
    background: #fff8e6;
}

.objectiva-mcq-timer-box {
    border: 1px solid #cfe0ff;
    color: #173b6d;
    min-width: 170px;
}

.objectiva-mcq-timer-track {
    width: 100%;
    height: 7px;
    background: #e6eefb;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 6px;
}

.objectiva-mcq-timer-fill {
    height: 100%;
    width: 100%;
    background: #1f5da8;
    border-radius: 999px;
    transition: width 0.3s linear;
}

.objectiva-mcq-time-danger .objectiva-mcq-timer-fill {
    background: #d92d20;
}

.objectiva-mcq-check-btn.is-disabled,
.objectiva-mcq-option.is-disabled {
    opacity: 0.65;
}

@media (max-width: 768px) {
    .objectiva-mcq-status-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .objectiva-mcq-question-head {
        gap: 8px;
        flex-wrap: wrap;
    }
}
.objectiva-mcq-option.is-selected .objectiva-mcq-option-label::before {
    content: "✓";
    font-size: 13px;
    font-weight: 900;
    margin-right: 2px;
}
.objectiva-mcq-hint-box {
    margin-top: 16px;
    padding: 16px 18px;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: #f8fbff;
    color: #0f172a;
    line-height: 1.6;
}

.objectiva-mcq-hint-box strong {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: #0f172a;
}

.objectiva-mcq-hint-btn {
    background: #1f5fae;
    color: #fff;
    border-radius: 18px;
    padding: 10px 22px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.objectiva-mcq-hint-btn:hover {
    background: #174f95;
    color: #fff;
}