  /* Style the table */
    table {
      width: 100%;
      border-collapse: collapse;
    }

    /* Style the table header */
    th {
      background-color: #f2f2f2;
      font-weight: bold;
    }

    /* Style the table rows */
    tr:nth-child(even) {
      background-color: #f2f2f2;
    }

    /* Style the table data cells */
    td {
      padding: 8px;
      border: 1px solid #ddd;
    }
    /* Style the pagination container */
.dataTables_paginate {
    text-align: center; /* Center the pagination controls */
    margin-top: 10px; /* Add some top margin for spacing */
}

/* Style the pagination buttons */
.dataTables_paginate a {
    padding: 5px 10px;
    margin: 0 3px;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-decoration: none;
    background-color: #fff;
    color: #333;
}

/* Style the active page button */
.dataTables_paginate .current {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Style the disabled and ellipsis buttons */
.dataTables_paginate .disabled, .dataTables_paginate .ellipsis {
    pointer-events: none;
    background-color: #eee;
    border: 1px solid #ccc;
    color: #999;
}
/* Style the Copy and CSV buttons */
.buttons-copy, .buttons-csv {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 3px;
    cursor: pointer;
}

/* Hover effect for Copy and CSV buttons */
.buttons-copy:hover, .buttons-csv:hover {
    background-color: #0056b3;
}

/* Style the "Bulk Download" button */
#bulkDownload {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin: 0 10px;
    border-radius: 3px;
    cursor: pointer;
}

/* Hover effect for "Bulk Download" button */
#bulkDownload:hover {
    background-color: #555;
}