table[datatable="true"] th,
table[datatable="true"] td {
    padding: 0.75rem 1rem !important;
    vertical-align: middle;
    transition: background 0.2s, color 0.2s;
}

    /* Hover apenas nos TH que NÃO estão na linha de filtro */
    table[datatable="true"] th:hover {
        background-color: #ffa5d2 !important;
        color: #e0e0e0 !important;
        transition: background 0.2s, color 0.2s;
        cursor: pointer;
    }

table[datatable="true"] tr.search-filtering-row th:hover {
    background-color: inherit !important;
    color: inherit !important;
    cursor: default;
}


table[datatable="true"] tr.search-filtering-row th:hover {
    background-color: inherit !important;
    color: inherit !important;
    cursor: default;
}

/* Estilos para a linha de filtro */
table[datatable="true"] tr.search-filtering-row th {
    background-color: #f8f9fa !important;
    border-top: 1px solid #e0e7ef !important;
    padding: 0.75rem 1rem !important;
}

/* Estilos para os inputs de pesquisa */
table[datatable="true"] .datatable-input {
    width: 100% !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.875rem !important;
    border: 1px solid #d1d5db !important;
    border-radius: 0.375rem !important;
    background-color: #ffffff !important;
    color: #1f2937 !important;
    transition: all 0.2s ease-out !important;
}

    table[datatable="true"] .datatable-input::placeholder {
        color: #9ca3af !important;
    }

    table[datatable="true"] .datatable-input:focus {
        outline: none !important;
        border-color: #3b82f6 !important;
        background-color: #ffffff !important;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
    }

    table[datatable="true"] .datatable-input:hover {
        border-color: #9ca3af !important;
    }
