/* Ensure text inside cells wraps properly */
.tabulator .tabulator-cell {
    white-space: pre-line !important; /* Allow text to break */
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    height: auto !important; /* Allow cells to expand */
    display: flex; 
     align-items: center; /* Keep text vertically aligned */
}

/* Ensure row height adjusts to content */
.tabulator-row {
    height: auto !important;
}