/* Global DataTables CSS */
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    outline: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
}
.dataTables_wrapper .dataTables_length select {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}
table.dataTable.table-striped > tbody > tr:nth-of-type(odd) > * {
    box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.02);
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #10b981;
    border-color: #10b981;
    color: white !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    color: #212529 !important;
}
table.dataTable > thead > tr > th, table.dataTable > thead > tr > td {
    border-bottom: 2px solid #dee2e6;
}
table.dataTable > tbody > tr > td {
    vertical-align: middle;
}

/* Add proper spacing to the DataTables controls */
.dataTables_wrapper > .row:first-child {
    margin-bottom: 1.5rem;
}
.dataTables_wrapper > .row:last-child {
    margin-top: 1.5rem;
}
