.cursor-pointer {
    cursor: pointer;
}

/* Evita FOUC en elementos que serán Tom Select.
   Tom Select agrega la clase .tomselected al elemento original al inicializar,
   por lo que la ocultación deja de aplicar automáticamente. */
.tom-select-init:not(.tomselected) {
    display: none !important;
}

/* Sticky table headers */
.ch-sticky-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--tblr-card-bg, #1e2330);
    box-shadow: inset 0 -1px 0 var(--tblr-border-color);
    color: #E5E7EB;
    font-weight: 700;
}
