@charset "UTF-8";

/* DataTables pagination - normal */
.dataTables_wrapper .dataTables_paginate .pagination .page-item .page-link {
    color: var(--default-color) !important;
    background-color: transparent !important;
    border: none !important;
}

/* Hover */
.dataTables_wrapper .dataTables_paginate .pagination .page-item .page-link:hover {
    background-color: var(--accent-color) !important;
    color: var(--contrast-color) !important;
}

/* Active page */
.dataTables_wrapper .dataTables_paginate .pagination .page-item.active .page-link {
    background-color: var(--accent-color) !important;
    color: var(--contrast-color) !important;
}

/* Disabled (Previous / Next) */
.dataTables_wrapper .dataTables_paginate .pagination .page-item.disabled .page-link {
    color: color-mix(in srgb, var(--default-color), transparent 60%) !important;
    background-color: transparent !important;
}


