/* Ensure options are on separate lines and text is visible */
.jgvq-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
}

.jgvq-option {
    font-size: 1.3em;
    padding: 18px 24px;
    background: #fff;
    border: 2px solid #555;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    min-height: 70px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
    color: #000000 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.jgvq-option:hover {
    background: #f5f5f5;
    border-color: #333;
    transform: translateY(-2px);
}

/* Force visibility override */
.jgvq-option,
.jgvq-option * {
    color: #000 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Correct / wrong states */
.jgvq-correct {
    background: #e6ffe6 !important;
    border-color: #28a745 !important;
    color: #155724 !important;
    font-weight: bold !important;
}

.jgvq-wrong {
    background: #ffe6e6 !important;
    border-color: #dc3545 !important;
    color: #721c24 !important;
}