* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Heebo', sans-serif;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #e2d6d6;
}

::-webkit-scrollbar-thumb {
    background: #229544;
}

label {
    font-size: 30px;
    margin-left: 4px;
    text-transform: uppercase;
}

p {
    font-size: 20px;
    margin-left: 4px;
    margin-top: -6px;
}

nav {
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    position: sticky;
    align-items: center;
    background: #229544;
    border-radius: 0 0 24px 24px;
    justify-content: space-between;
}

.interacaoes {
    gap: 14px;
    display: flex;
    align-items: center;
}

.bi {
    color: #ffffff;
}

.logo {
    top: -4px;
    left: 2px;
    width: 250px;
    object-fit: cover;
    position: absolute;
}

.button {
    width: 50px;
    height: 45px;
    display: flex;
    cursor: pointer;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: #0000004e;
}

.button:hover {
    transform: scale(0.95);
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.101);
}

.foto {
    width: 50px;
    margin-top: 5px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
    border: solid 2px #f7f0f0;
}

.section-table {
    gap: 10px;
    display: flex;
    margin-top: 20px;
    padding-inline: 10px;
    margin: 10px;
}

.card {
    width: 100%;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    max-height: 40rem;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.45);
}

.table-title {
    padding: 10px;
}

.table-title label {
    font-size: 24px;
    font-weight: 800;
}

.table-title p {
    font-size: 14px;
    font-weight: 600;
}

.div-table {
    width: 100%;
    height: calc(92% - 2rem);
    padding: 10px 5px;
    overflow: auto;
    /* Permite a rolagem horizontal e vertical */
    position: relative;
}

.div-table table  thead tr {
    text-align: center;
}

.div-table table tbody tr td{
    text-align: center !important;
}

.div-table table {
    width: 100%;
    font-size: 16px;
    table-layout: auto;
    /* Ajusta a largura das colunas conforme o conteúdo */
    border-collapse: separate;
    /* Remove a colapsação de bordas */
    overflow-x: auto;
    /* Garantir que a tabela tenha rolagem horizontal */
}

.div-table table thead {
    z-index: 10;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    background: #229544;
    text-transform: uppercase;
}

.div-table table thead th {
    padding: 4px 6px;
    align-items: left;
    white-space: nowrap;
    border-left: #fff 1px solid;
}

.div-table table thead th:first-child {
    align-items: left;
    border-left: none;

}

.div-table table tbody tr:nth-child(even) {
    background-color:#22954455;
    color: black;
}

.div-table table tbody {
    font-weight: 800;
    font-size: 14px !important;
    align-items: center ;
}

.div-table table tbody td {
    padding: 4px 8px;
    white-space: nowrap;
}

select,
input {
    font-size: 16px;
}

.containerDebitos {
    display: none;
}

#transitionPrev,
#transitionPrev2,
#transitionNext2 {
    display: none;
}

.drawer {
    display: none;
    flex-direction: column;
    right: 0;
    z-index: 9999;
    position: fixed;
    width: 350px;
    background: #000000e8;
    box-shadow: 4px 8px 12px 12000px rgba(0, 0, 0, 0.382);
    height: 100vh;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    color: #fff;
}

@keyframes slide-left {
    0% {
        transform: translateX(350px);
    }

    100% {
        transform: translateX(0);
    }
}

.close-drawer {
    color: #000000e8;
    margin-top: 10px;
    margin-left: 10px;
    font-size: 30px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #ffffff74;
    font-weight: bold;
}

article {
    display: flex;
    flex-direction: column;
    padding-inline: 15px;
    margin-top: 20px;
    gap: 10px;
}

article input,
article select {
    border-radius: 4px;
    border: solid 1px #ccc;
    padding: 4px 10px;
    outline: none;
    /* background: #ffffff74; */
    color: #000;
}

#filtroSupervisor {
    border-radius: 4px;
    border: solid 1px #ccc;
    padding: 4px 10px;
    outline: none;
}

article select option:hover {
    /* color: #229544; */
    background: #000;
}

.sub {
    font-size: 20px;
    margin-bottom: -10px;
    margin-left: -0.5px;
}

.container-filtros {
    bottom: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    gap: 10px;
}

.container-filtros button {
    width: 100%;
    border: none;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 20px;
    padding-block: 6px;
    background: #ff43435f;
    /* color: #fff; */
}

.container-filtros button:hover {
    scale: 0.95;
    cursor: pointer;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.101);
}

.save-filters {
    color: #fff;
    background: #229544 !important;
}

th.sticky-col,
td.sticky-col {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 2;
    background-color: #A7D5B5;
    border-right: 2px solid #ddd;
    text-transform: uppercase !important;
}

th.sticky-col {
    z-index: 3;
}