table.dataTable {
    font-size: 1em;
}
.dataTables_scroll{
    margin-bottom: 30px;
}
table.dataTable td, 
table.dataTable th {
    font-size: 0.9em;
}  
table#exibicao{
    font-size: 1.1em;
}
.titulo{
    font-weight: bold;
}

/* Modal de edição */
.modal {
    display: none; /* escondido por padrão */
    position: fixed;
    z-index: 9999;
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 600px;
    height: auto;
    border-radius: 6px;
}
.close {
    float: right;
    font-size: 20px;
    cursor: pointer;
}
.form-actions {
    margin-top: 15px;
    text-align: right;
}
.form-actions button {
    margin-left: 10px;
} 
textarea {
    overflow-y: scroll;   /* força a barra vertical sempre visível */
    overflow-x: auto;     /* mostra a barra horizontal apenas quando necessário */
}
.areaTexto{
    width: 600px;
    max-width: 100%; /* garante que não estoure em telas menores */
    height: 100%;   /* altura inicial */
    resize: vertical;
}
td .editar-status, td .editar-sexo{
    display: inline-block;
    margin-left: auto;     /* empurra para a direita */
    width: 120px;
}
#linhaBusca{
    display: flex;
    justify-content: flex-start;
}
#btnLimparFiltro{
    display: flex;
    margin-left: 5px;
    height: 28px;
    font-size: 1em;
    justify-content: center;
    align-items: center;
}
#btnLimparFiltro:hover{
    background-color:rgb(212, 32, 32);
}
.hide{
    display: none;
}
.container {
    border: 1px solid #01a096 !important;  
    margin-top: -40px!important;  
}
#exibicao tr {
    border-bottom: 1px solid #20b2aa42;
}
.preserve {
    white-space: pre-line;
}
table.dataTable td {
    white-space: nowrap;   /* evita quebra no meio das palavras */
}
.form-label{
    min-width: 135px;
}
#filtroUsuario{
    width: 90%;
}
#filtroStatus{
    height: 30px;
}
#dataInicial, #dataFinal{
    width: 115px!important;
    height: 30px;
}        

@media (max-width: 768px) {
    table.dataTable td {
        white-space: normal; /* em telas pequenas, deixa quebrar linha */
        word-wrap: break-word;
    }
}