/**
 * GD gray pagination colors — DataTables Previous / Next / page numbers only.
 * Color overrides only; no layout/size changes.
 */

.dataTables_paginate .page-link,
#pagination-container .page-link {
	border-color: #dee2e6 !important;
	color: #52525b !important;
	background-color: #fff !important;
}

.dataTables_paginate .page-item.active .page-link,
#pagination-container .page-item.active .page-link {
	background: linear-gradient(135deg, #52525b 0%, #71717a 100%) !important;
	border-color: transparent !important;
	color: #fff !important;
}

.dataTables_paginate .page-link:hover,
#pagination-container .page-link:hover {
	background-color: #e9ecef !important;
	border-color: #dee2e6 !important;
	color: #333 !important;
}

.dataTables_paginate .page-item.disabled .page-link,
#pagination-container .page-item.disabled .page-link {
	color: #adb5bd !important;
	border-color: #dee2e6 !important;
	background-color: #fff !important;
}

/* Legacy DataTables Previous/Next (non-Bootstrap) — colors only */
.dataTables_paginate .paginate_button {
	border-color: #dee2e6 !important;
	color: #52525b !important;
}

.dataTables_paginate .paginate_button.current,
.dataTables_paginate .paginate_button.current:hover {
	background: linear-gradient(135deg, #52525b 0%, #71717a 100%) !important;
	border-color: transparent !important;
	color: #fff !important;
}

.dataTables_paginate .paginate_button:hover:not(.current):not(.disabled) {
	background: #e9ecef !important;
	border-color: #dee2e6 !important;
	color: #333 !important;
}

.dataTables_paginate .paginate_button.disabled,
.dataTables_paginate .paginate_button.disabled:hover {
	color: #adb5bd !important;
	border-color: #dee2e6 !important;
}
