﻿.table-container-user {
    max-height: 65vh;
    overflow-y: auto;
}

    .table-container-user table {
        border-collapse: collapse;
        width: 100%;
    }

    .table-container-user th, .table-container-user td {
        padding: 8px;
        text-align: left;
        overflow: hidden;
    }

    .table-container-user thead, .table-container-user tbody {
        display: block;
    }

    .table-container-user tbody {
        max-height: calc(65vh - 40px);
        overflow-y: auto;
    }

    .table-container-user thead tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .table-container-user tbody tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .table-container-user th:nth-child(2), .table-container-user td:nth-child(2),
    .table-container-user th:nth-child(3), .table-container-user td:nth-child(3) {
        white-space: nowrap; /* Impede a quebra de linha */
        overflow: hidden; /* Impede a exibição do conteúdo fora do contêiner */
        text-overflow: ellipsis; /* Adiciona reticências quando o conteúdo é cortado */
    }

#exibeListaUsuarios tr:hover {
    background-color: #e0e0e0; 
}
#paginationUsuarios { margin: 10px 0; display: flex; justify-content: center; }


