/* UPSEO Content Styling Framework - سامان حسابان */

.upseo-article-wrapper {
    width: 100%;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 16px;
    color: #2b2b2b;
    box-sizing: border-box;
}

.upseo-article-wrapper p {
    margin-bottom: 1.5rem;
}

.upseo-article-wrapper h2 {
    font-size: 1.6rem;
    color: #122b40;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    border-right: 4px solid #0056b3;
    padding-right: 12px;
}

.upseo-article-wrapper h3 {
    font-size: 1.3rem;
    color: #1e3a5f;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

/* 1. جعبه اطلاعات اختصاصی (Information Gain Box) */
.upseo-infogain-box {
    background-color: #f0f7ff;
    border: 1px solid #cce4ff;
    border-right: 5px solid #0056b3;
    border-radius: 6px;
    padding: 20px;
    margin: 25px 0;
}

.upseo-infogain-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #004085;
    font-size: 1.15rem;
}

/* 2. جعبه هشدار و ریسک های قانونی و مالیاتی (Warning Box) */
.upseo-warning-box {
    background-color: #fff8f5;
    border: 1px solid #ffd8cc;
    border-right: 5px solid #d9381e;
    border-radius: 6px;
    padding: 20px;
    margin: 25px 0;
}

.upseo-warning-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #902213;
    font-size: 1.15rem;
}

/* 3. جدول ماتریس تصمیم گیری و مقایسه (Matrix & Responsive Table) */
.upseo-table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.upseo-matrix-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    font-size: 15px;
}

.upseo-matrix-table th {
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 14px 16px;
    font-weight: 600;
}

.upseo-matrix-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}

.upseo-matrix-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.upseo-matrix-table tr:hover {
    background-color: #edf2f7;
}

/* 4. چک لیست تعاملی ارزیابی آمادگی (Interactive Checklist) */
.upseo-interactive-checklist {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.upseo-checklist-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.upseo-checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
}

.upseo-checklist-item input[type="checkbox"] {
    margin-left: 10px;
    margin-top: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.upseo-checklist-result {
    margin-top: 20px;
    padding: 15px;
    background-color: #f1f5f9;
    border-radius: 6px;
    font-weight: bold;
    color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upseo-checklist-btn {
    background-color: #0056b3;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.upseo-checklist-btn:hover {
    background-color: #004085;
}