@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #e3e5eb;
    width: 100vw;
    height: 100vh;
}

.content {
    width: 77%;
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 6px;
    position: absolute;
    right: 0;
    top: 0;
    align-items: center;
}

.table-responsive {
    width: 95%;
    text-align: center;
    margin-top: 2%;
    border-radius: 10px;
    height: 500px; /* Definida a altura máxima */
    overflow-y: scroll; /* Permite rolagem */
    position: relative;
    scrollbar-width: none; /* Remove o scroll no Firefox */
}

/* Remove a barra de rolagem no Chrome, Edge e Safari */
.table-responsive::-webkit-scrollbar {
    display: none;
}



.titulo-item {
    display: flex;
    height: min-content;
    align-items: center;
}

.titulo-item > h3 {
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    line-height: 100%;
    margin: auto;
}

.titulo-item > i:hover {
    color: black;
    cursor: pointer;
}

.icon-item:hover {
    color: #600ebe;
    cursor: pointer;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #31cfff;
    color: #ffffff;
    font-weight: 500;
    vertical-align: middle;
}

.table th,
.table td {
    padding: 15px 10px; /* Adiciona espaçamento interno nas células */
    white-space: nowrap; /* Impede quebra de linha */
    text-overflow: ellipsis; /* Trunca o texto longo */
    overflow: hidden; /* Esconde o excesso de texto */
    vertical-align: middle; /* Alinha verticalmente ao centro */
    text-align: center; /* Alinha o texto ao centro */
}

/* Ajusta largura para colunas específicas */
.table th:nth-child(2),
.table td:nth-child(2) {
    min-width: 200px;
    max-width: 200px;
}

.table th:nth-child(3),
.table td:nth-child(3),
.table th:nth-child(4),
.table td:nth-child(4) {
    min-width: 120px;
    max-width: 150px;
}

/* Cabeçalho fixo */
.table thead th {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px; /* Aumenta o padding para mais espaço */
    background-color: #ffffff;
    color: #131313;
}

.custom-tfoot {
    background-color: #2f5fce !important;
    color: #ffffff !important;
}

.filtros {
    background-color: #ffffff;
    width: 95%;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    border-radius: 15px;
}

.filtroso {
    background-color: #ffffff;
    width: 95%;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
}

.custom-btn {
    background-color: #31cfff;
    border-color: #31cfff;
}

.custom-btn:hover {
    background-color: #20add8;
    border-color: #20add8;
}

.fecha-menu {
    color: #20add8;
    cursor: pointer;
}

.fecha-menu:hover {
    color: #600ebe;
}

.porc {
    padding: 10px;
    background-color: #600ebe;
    color: white;
    border-radius: 10px;
    text-align: center;
}