.gvq-container {
    max-width: 900px;
    margin: 0 auto 40px;
    font-family: system-ui, -apple-system, sans-serif;
}

.gvq-question {
    margin: 30px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fdfdfd;
}

.gvq-question h3 {
    font-family: 'Cardo', 'Gentium Plus', Georgia, serif;
    font-size: 2em;
    margin: 0 0 15px;
    color: #222;
}

.gvq-question small {
    font-size: 0.8em;
    color: #666;
}

.gvq-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gvq-option {
    font-family: 'Cardo', 'Gentium Plus', Georgia, serif;
    font-size: 1.15em;
    text-align: left;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.gvq-option:hover {
    background: #f5f5f5;
}

.gvq-correct {
    background: #e6ffe6 !important;
    border-color: #28a745 !important;
    color: #155724 !important;
    font-weight: bold;
}

.gvq-wrong {
    background: #ffe6e6 !important;
    border-color: #dc3545 !important;
    color: #721c24 !important;
}

#gvq-new-test {
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#gvq-new-test:hover {
    background: #005d87;
}