.pronto-quiz-wrap {
    max-width: 900px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
}
.pronto-question {
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background: #fff;
}
.pronto-question h3 {
    margin-top: 0;
    color: #0E2335;
}
.pronto-answer {
    display: block;
    padding: 12px 14px;
    margin-bottom: 10px;
    border: 2px solid #d7d7d7;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
    background: #fff;
}
.pronto-answer input {
    display: none;
}
.pronto-answer.selected {
    background: #0E2335;
    color: #fff;
    border-color: #0E2335;
}
.pronto-answer.correct-answer {
    background: #e8f6ec;
    border-color: #2f8f46;
    color: #163b20;
}
.pronto-answer.wrong-answer {
    background: #fdecec;
    border-color: #c0392b;
    color: #4a1111;
}
.pronto-answer.locked {
    cursor: default;
}
.pronto-submit {
    background: #0E2335;
    color: #fff;
    padding: 13px 22px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}
.pronto-submit:disabled {
    opacity: .7;
    cursor: default;
}
.pronto-results {
    margin-top: 25px;
    padding: 18px;
    border-radius: 10px;
    background: #f5f7f8;
    font-size: 22px;
    font-weight: bold;
    color: #0E2335;
}
.pronto-question-review {
    margin-top: 12px;
    font-weight: bold;
}
.pronto-correct-text {
    color: #2f8f46;
}
.pronto-wrong-text {
    color: #c0392b;
}
.pronto-missed-text {
    color: #b36b00;
}
