.llq-quiz-wrapper {
    max-width: 800px;
    margin: 30px auto;
    padding: 25px 30px;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    direction: rtl;
    text-align: right;
    font-family: Tahoma, "Segoe UI", sans-serif;
    line-height: 1.9;
}

.llq-quiz-wrapper h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.llq-intro {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
}

.llq-section {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.llq-section-title {
    color: #2271b1;
    font-size: 18px;
    margin-bottom: 15px;
}

.llq-passage {
    background: #f7f9fb;
    border-right: 4px solid #2271b1;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-style: italic;
    color: #333;
}

.llq-question {
    margin-bottom: 18px;
}

.llq-question-text {
    font-weight: bold;
    margin-bottom: 8px;
}

.llq-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 10px;
}

.llq-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.llq-option:hover {
    background: #f0f6fb;
}

.llq-option input[type="radio"] {
    margin: 0;
}

.llq-submit-wrap {
    text-align: center;
    margin-top: 25px;
}

.llq-btn {
    display: inline-block;
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease;
}

.llq-btn:hover {
    background: #135e96;
    color: #fff;
}

/* نتیجه آزمون */
.llq-result h2 {
    margin-bottom: 15px;
}

.llq-score, .llq-level {
    text-align: center;
    font-size: 18px;
    margin: 8px 0;
}

.llq-level strong {
    color: #2271b1;
}

.llq-review {
    margin-top: 30px;
}

.llq-review h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.llq-review-item {
    padding: 10px 14px;
    margin-bottom: 10px;
    border-radius: 6px;
    border-right: 4px solid #ccc;
}

.llq-review-item.llq-correct {
    background: #eaf7ea;
    border-right-color: #4caf50;
}

.llq-review-item.llq-incorrect {
    background: #fdecea;
    border-right-color: #e53935;
}

.llq-retry {
    text-align: center;
    margin-top: 25px;
}

@media (max-width: 600px) {
    .llq-quiz-wrapper {
        padding: 18px 15px;
        margin: 15px;
    }
}
