﻿/* =========================================================
   ۶) ردیف‌ها، سلول‌ها و هایلایت (Rows, Cells & Highlights)
   هدف: رنگ ردیف‌های زوج/فرد، هاور، و رفتار نمایش متن در سلول‌ها
   وابستگی: --tbl-row-alt و --tbl-row-hover و --tbl-border-weak
   ========================================================= */
.tabulator-row {
    border-bottom: 1px solid var(--tbl-border-weak) !important;
}

    .tabulator-row:nth-child(even) {
        background-color: var(--tbl-row-alt) !important;
    }

    .tabulator-row:hover {
        background-color: var(--tbl-row-hover) !important;
    }

.tabulator .tabulator-row .tabulator-cell {
    white-space: normal !important;
    overflow: visible !important;
    padding: 8px 4px !important;
    line-height: 1.2 !important;
}
