﻿
/* =========================================================
   ۲۳) هم‌ترازسازی ستون انتخاب (Checkbox column) در Tabulator
   هدف: وسط‌چین کردن checkbox ها در هدر و بدنه
   وابستگی: به field انتخاب Tabulator (معمولاً rowSelection)
   ========================================================= */
.tabulator .tabulator-header .tabulator-col[tabulator-field="select"] .tabulator-col-content,
.tabulator .tabulator-row .tabulator-cell[tabulator-field="select"] {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.tabulator-row .tabulator-cell input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    cursor: pointer;
}
