/* MTD Quizzes — Ster 4 stylesheet
   Geldt voor alle tafels op ster-niveau 4.
   Scope: .mtdq-star-4
*/

.mtdq-star-4 .mtdq-question-wrap {
    justify-content: flex-start;
}

.mtdq-star-4 .mtdq-question-wrap.has-tip {
    min-height: 517px;
}

.mtdq-star-4 .mtdq-quiz-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.mtdq-star-4 .mtdq-question {
    font-size: 3.5rem;
    font-family: 'FontAwesome';
}

.mtdq-star-4 .mtdq-check-btn {
    padding: 0 20px;
}

/* Multiple choice antwoordblokjes */
.mtdq-mc-options {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-top: 24px;
}

.mtdq-star-4 .mtdq-mc-options {
    display: grid;
}

.mtdq-mc-btn {
    padding: 16px 12px;
    font-size: 1.4rem;
    font-family: inherit;
    font-weight: 700;
    color: #1a2a3a;
    background: #f4f8fc;
    border: 2px solid #dde8f5;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
    text-align: center;
}

.mtdq-mc-btn:hover:not(:disabled) {
    background: #e8f4ef;
    border-color: #59b89a;
}

.mtdq-mc-btn:active:not(:disabled) {
    transform: scale(0.97);
}

.mtdq-mc-btn.is-correct {
    background: #edfaf5;
    border-color: #59b89a;
    color: #2e9e6e;
}

.mtdq-mc-btn.is-wrong {
    background: #fff0f0;
    border-color: #e05252;
    color: #c94040;
    animation: mtdqShake 0.35s ease;
}

.mtdq-mc-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.mtdq-mc-btn.is-correct:disabled,
.mtdq-mc-btn.is-wrong:disabled {
    opacity: 1;
}
