/* DataTable Custom Styles */
.dataTables_wrapper .dataTables_processing {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Action Buttons */
.btn-group .btn {
    margin-right: 5px;
}

/* Table Styles */
.table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Search Box */
.dataTables_filter input {
    border-radius: 4px;
    padding: 5px 10px;
    border: 1px solid #ddd;
}

/* Pagination */
.dataTables_paginate .paginate_button {
    padding: 5px 10px;
    margin: 0 2px;
    border-radius: 4px;
}

.dataTables_paginate .paginate_button.current {
    background: #3498db;
    color: white !important;
    border: none;
}