body {
    font-family: Arial, sans-serif;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    position: relative;
    background-color: white;
}


th,
td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    position: sticky;
    top: 0;
}

/* Fixar as primeiras 7 colunas */
.fixed-col {
    position: sticky;
    left: 0;
    z-index: 1;
}

/* Fixar colunas progressivamente */
.fixed-col-2 {
    left: 200px;
}

.fixed-col-3 {
    left: 200px;
}
.filterAgrup{
    min-width: 15rem;
}


/* Fixar as colunas da tela de precos */
.fixed-col-preco {
    position: sticky;
    left: 0;
    z-index: 1;
}

/* Fixar colunas progressivamente */
.fixed-col-preco2 {
    left: 230px;
}

