.ilvq-container {
    max-width: 800px;
    margin: 30px auto;
    font-family: system-ui, sans-serif;
    text-align: center;
}

.ilvq-question {
    margin: 30px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fdfdfd;
}

.ilvq-question h3 {
    font-family: 'Cardo', Georgia, serif;
    font-size: 2.8em;
    margin: 0 0 20px;
}

.ilvq-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ilvq-option {
    font-size: 1.25em;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid #999;
    border-radius: 6px;
    text-align: left;
    cursor: pointer;
}

.ilvq-option:hover {
    background: #f8f8f8;
}

.ilvq-correct {
    background: #e6ffe6 !important;
    border-color: #28a745 !important;
    color: #155724 !important;
}

.ilvq-wrong {
    background: #ffe6e6 !important;
    border-color: #dc3545 !important;
    color: #721c24 !important;
}

#ilvq-new-test {
    background: #007cba;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}