/**
 * CSS Customizado - GrandValle Comercial
 * Remove barras de rolagem desnecessárias
 */

/* Remove barra de rolagem do menu lateral */
.fi-sidebar-nav {
    overflow-y: auto !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
}

.fi-sidebar-nav::-webkit-scrollbar {
    display: none !important; /* Chrome/Safari */
}

/* Remove barra de rolagem horizontal da página */
.fi-main-ctn {
    overflow-x: hidden !important;
}

/* Remove scroll horizontal em tabelas */
.fi-ta-content {
    overflow-x: auto !important;
}

/* Garante que a tabela não force scroll horizontal */
.fi-ta-table {
    min-width: 100% !important;
    width: 100% !important;
}

/* Ajusta colunas da tabela para não ultrapassar */
.fi-ta-cell {
    white-space: normal !important;
    word-break: break-word !important;
}

/* Remove scroll horizontal do body */
body {
    overflow-x: hidden !important;
}

/* Container principal sem overflow horizontal */
.fi-layout {
    overflow-x: hidden !important;
}
