﻿/* =========================================================
   ۴) پایه Tabulator و سربرگ‌ها (Base & Headers)
   هدف: تنظیم RTL، گردی گوشه‌ها، رنگ سربرگ و خطوط جداکننده ستون‌ها
   وابستگی: به متغیرهای --tbl-bg-header و --tbl-border-weak
   ========================================================= */
.tabulator {
    direction: rtl;
    border-radius: 8px;
    overflow: hidden;
    color: #e0e0e0 !important;
}

.tabulator-header,
.tabulator-col {
    background-color: var(--tbl-bg-header) !important;
}

.tabulator-header {
    border-bottom: 1px solid var(--tbl-border-weak) !important;
}

.tabulator-col {
    border-right: 1px solid var(--tbl-border-weak) !important;
    padding-top: 10px !important;
}

.tabulator-col-title {
    text-align: center !important;
    width: 100%;
    font-size: 13px !important;
    margin-bottom: 5px !important;
}
