@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 {
    /* background-color: red; */
    width: 77%;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 6px;
    position: absolute;
    right: 0;
    top: -50px;
    align-items: center;
}


.contador {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: -1;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
}

.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;
}

/* Estilo para a barra de rolagem no Chrome, Edge e Safari */

/* Estilo para a barra de rolagem no Firefox */

.table-responsive {
    width: 100%;
    text-align: center;
    margin-top: 2%;
    border-radius: 10px;
    height: 500px;
    /* Defina a altura máxima da tabela */
    overflow-y: auto;
    position: relative;
}

.table-striped>tbody>tr:nth-child(odd)>td,
.table-striped>tbody>tr:nth-child(odd)>th {
    background-color: #0b1429;
    color: white;
    font-weight: 500;
}

.table th:nth-child(2),
.table td:nth-child(2) {
    width: 200px;
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.table th:nth-child(3),
.table td:nth-child(3) {
    width: 50px;
    max-width: 50px;
    text-align: center;
}

.table thead th {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #2f5fce;
    /* Mantém o mesmo fundo das linhas ímpares */
    color: white;
}

.custom-tfoot {
    background-color: #2f5fce !important;
    color: #ffffff !important; /* Caso queira mudar a cor do texto também */
}