/* Estilo geral da tabela */
.table-custom {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

/* Cabeçalho com a cor #0e3c55 */
.table-custom thead {
    background-color: #0e3c55 !important;
    color: #ffffff !important;
}

/* Linhas alternadas */
.table-custom tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Hover nas linhas */
.table-custom tbody tr:hover {
    background-color: #eaf3f8;
    transition: 0.2s ease-in-out;
}

/* Células da tabela */
.table-custom td,
.table-custom th {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

/* Bordas das células */
.table-custom td {
    border-top: 1px solid #dee2e6;
}

/* Opcional: borda inferior mais grossa no header */
.table-custom thead th {
    border-bottom: 2px solid #0c3246;
}


/* Remove o texto 'Search:' / 'Pesquisar:' */
.dataTables_filter label {
    font-size: 0; /* Texto desaparece */
}

/* Ajusta o input para não ficar demasiado à direita */
.dataTables_filter input {
    margin-left: 0 !important;
}


.dataTables_length select {
    padding: .25rem .5rem;
    border: 1px solid #0e3c55;
    border-radius: 4px;
    color: #0e3c55;
}

