#lpq-quiz {
    max-width: 800px;
    margin: 30px auto;
    font-family: system-ui, sans-serif;
}

#lpq-progress {
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0;
}

#lpq-question h3 {
    font-family: 'Cardo', Georgia, serif;
    font-size: 2.8em;
    margin: 20px 0;
    color: #222;
}

.lpq-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.lpq-option {
    font-size: 1.25em;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid #999;
    border-radius: 6px;
    text-align: left;
    cursor: pointer;
}

.lpq-option:hover {
    background: #f8f8f8;
}

.lpq-correct {
    background: #e6ffe6 !important;
    border-color: #28a745 !important;
    color: #155724 !important;
}

.lpq-wrong {
    background: #ffe6e6 !important;
    border-color: #dc3545 !important;
    color: #721c24 !important;
}

#lpq-start, #lpq-restart {
    padding: 12px 28px;
    font-size: 1.1em;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin: 20px 0;
}