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