/* Tutor LMS Question Gating — inline result UI */

.tqg-result {
    margin: 16px 0;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    border-left: 4px solid transparent;
}

.tqg-result--correct {
    background-color: #f0faf3;
    border-left-color: #22c55e;
    color: #166534;
}

.tqg-result--incorrect,
.tqg-result--error {
    background-color: #fef2f2;
    border-left-color: #ef4444;
    color: #7f1d1d;
}

.tqg-result-message {
    margin: 0 0 6px;
    font-weight: 600;
}

.tqg-result-message:last-child {
    margin-bottom: 0;
}

.tqg-explanation-body {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: inherit;
    font-weight: 400;
}

/* Prevent double-tap flicker when re-enabling inputs */
.tutor-quiz-wrapper input[type="radio"]:disabled,
.tutor-quiz-wrapper input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
