.lqs-quiz-container, .lqs-checkout-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 650px;
    margin: 20px auto;
    font-family: inherit;
    direction: rtl;
}

.lqs-quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.lqs-badge {
    background: #e0e7ff;
    color: #4338ca;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

.lqs-question-text {
    font-size: 17px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.6;
}

.lqs-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lqs-opt-btn {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: right;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lqs-opt-btn:hover {
    border-color: #6366f1;
    background: #f0f3ff;
}

.lqs-opt-btn.correct {
    background: #d1fae5 !important;
    border-color: #10b981 !important;
    color: #065f46;
}

.lqs-opt-btn.wrong {
    background: #fee2e2 !important;
    border-color: #ef4444 !important;
    color: #991b1b;
}

.lqs-explanation {
    margin-top: 20px;
    padding: 15px;
    background: #f3f4f6;
    border-right: 4px solid #6366f1;
    border-radius: 4px;
}

.lqs-btn {
    background: #4f46e5;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}