/*
 * Desplazamiento común para todas las tablas Tabulator del aplicativo.
 * El límite vertical evita que las tablas largas ocupen toda la página y
 * mantiene disponible el scroll horizontal cuando las columnas lo requieran.
 */
.tabulator {
    max-width: 100%;
}

.tabulator .tabulator-tableHolder {
    max-height: 60vh;
    overflow-x: auto !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    scrollbar-color: #7b8a92 #eef1f3;
    scrollbar-gutter: stable;
    scrollbar-width: auto;
    -webkit-overflow-scrolling: touch;
}

.tabulator .tabulator-tableHolder .tabulator-table {
    min-width: 100%;
}

.tabulator .tabulator-tableHolder::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.tabulator .tabulator-tableHolder::-webkit-scrollbar-track {
    background: #eef1f3;
}

.tabulator .tabulator-tableHolder::-webkit-scrollbar-thumb {
    background: #7b8a92;
    border: 2px solid #eef1f3;
    border-radius: 8px;
}

.tabulator .tabulator-tableHolder::-webkit-scrollbar-thumb:hover {
    background: #5f6f78;
}
