/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/*# sourceMappingURL=user.css.map */

/**
 * ==========================================
 * CUSTOM GLOBAL STYLES
 * ==========================================
 */

/* Efeito de destaque ao passar o mouse nas linhas das tabelas (DataTables) */
.table tbody tr:hover > td,
.table tbody tr:hover > th {
    background-color: transparent !important; /* Remove fundo que possa obstruir */
    background-image: none !important; /* Limpa o degradê das listras do Bootstrap 5 */
    box-shadow: inset 0 0 0 9999px rgba(0, 102, 255, 0.15) !important;
    transition: background-color 0.1s ease-in-out;
    cursor: default !important;
}

/* Compatibilidade com temas escuros (Falcon/Bootstrap 5) */
[data-bs-theme="dark"] .table tbody tr:hover > td,
[data-bs-theme="dark"] .table tbody tr:hover > th {
    box-shadow: inset 0 0 0 9999px rgba(255, 255, 255, 0.1) !important;
}
