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

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

.mtdq-star2-instruction {
    font-family: 'Nunito', 'Fredoka One', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    border-radius: 8px;
    margin: 6px 0 12px 0;
    text-align: center;
}

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

.mtdq-star-2 .mtdq-question {
    font-size: 1.35rem;
    margin-bottom: 10px;
    width: 100%;
}

/* Star 2 — SVG + dual input area */
.mtdq-star2-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mtdq-star2-inputs-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Forceer dezelfde stijl als ster 1 invoerveld — Divi overschrijft dynamisch aangemaakte inputs */
.mtdq-star-2 .mtdq-star2-input {
    padding: 10px 14px !important;
    font-size: 1.3rem !important;
    font-family: 'Nunito', 'Fredoka One', sans-serif !important;
    font-weight: 700 !important;
    color: #000000 !important;
    background: #f4f8fc !important;
    border: 2px solid #dde8f5 !important;
    border-radius: 8px !important;
    outline: none !important;
    text-align: center;
    min-width: 120px;
    max-width: 160px !important;
    -moz-appearance: textfield;
    box-sizing: border-box !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.mtdq-star-2 .mtdq-star2-input:focus {
    border-color: #59b89a !important;
}
.mtdq-star-2 .mtdq-star2-input.is-correct {
    border-color: #59b89a !important;
    background: #edfaf5 !important;
}
.mtdq-star-2 .mtdq-star2-input.is-wrong {
    border-color: #e05252 !important;
    background: #fff0f0 !important;
    animation: mtdqShake 0.35s ease;
}

.mtdq-star2-input::placeholder {
    color: #aaaaaa;
    opacity: 1;
}

/* Verwijder spinner arrows op numeric-achtige velden */
.mtdq-star2-input::-webkit-outer-spin-button,
.mtdq-star2-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Forceer dezelfde stijl als ster 1 knop */
.mtdq-star-2 .mtdq-star2-inputs-row .mtdq-check-btn {
    padding: 0 20px !important;
    font-size: 1.3rem !important;
    font-family: 'Nunito', 'Fredoka One', sans-serif !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: #59b89a !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}
.mtdq-star-2 .mtdq-star2-btn-wrap .mtdq-check-btn:hover {
    background: #4aa688 !important;
}
.mtdq-star-2 .mtdq-star2-btn-wrap .mtdq-check-btn:active {
    transform: scale(0.97);
}
.mtdq-star-2 .mtdq-star2-btn-wrap .mtdq-check-btn:disabled {
    background: #b8d8ce !important;
    cursor: not-allowed;
}

.mtdq-star2-btn-wrap {
    display: flex;
    justify-content: center;
}
