/* Shared experiment lab quiz UI */
.quiz-box .choices,
#choices {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

button.choice,
.quiz-box .choice {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 14px;
    margin: 0;
    background: #010409;
    border: 2px solid #30363d;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    color: #c9d1d9;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.4;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.15s, background 0.15s;
}

button.choice:hover,
.quiz-box .choice:hover {
    border-color: #58a6ff;
}

button.choice.correct,
.quiz-box .choice.correct {
    border-color: #3fb950;
    background: rgba(63, 185, 80, 0.1);
}

button.choice.wrong,
.quiz-box .choice.wrong {
    border-color: #ff7b72;
    background: rgba(255, 123, 114, 0.1);
}

#question-text {
    min-height: 1.5em;
}