/* Utilidades reutilizables para tablas Tabler */

/* Columna sticky a la derecha: se mantiene visible aunque la tabla tenga scroll horizontal.
   Aplicar la clase tanto al <th> como a cada <td> de la columna. */
.col-sticky-right {
    position: sticky;
    right: 0;
    background: var(--tblr-card-bg, #fff);
    box-shadow: -4px 0 6px -4px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.table tr.bg-light .col-sticky-right {
    background: var(--tblr-bg-surface-secondary, #f6f7f9);
}
