/* DataTable container styling */
.dataTables_wrapper {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Length selector */
.dataTables_wrapper .dataTables_length label {
    font-weight: bold;
    padding: 10px 0;
}
.dataTables_wrapper .dataTables_length select {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 5px;
}

/* Search box */
.dataTables_wrapper .dataTables_filter {
    text-align: right;
    padding: 10px 0;
}
.dataTables_wrapper .dataTables_filter input {
    width: 200px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 5px;
}

/* Table styling */
.table {
    width: 100%;
    border-collapse: collapse;
}
.table thead {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #333;
}
.table thead th {
    padding: 12px 15px;
    border-bottom: 2px solid #dee2e6;
    text-align: left;
}
.table tbody tr {
    border-bottom: 1px solid #dee2e6;
}
.table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}
.table tbody td {
    padding: 10px 15px;
    color: #555;
}

/* Pagination */
.dataTables_wrapper .dataTables_paginate {
    padding: 15px 0;
    text-align: center;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 8px 12px;
    margin: 0 3px;
    background-color: #f3f3f3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #0056b3;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #0056b3;
}

/* Info text styling */
.dataTables_wrapper .dataTables_info {
    padding: 10px 0;
    font-size: 0.9em;
    color: #666;
}