/* Custom Pagination Styles */
.pagination .page-item.active .page-link {
    background-color: #343a40;  /* Dark background for active page */
    border-color: #343a40;
}

.pagination .page-link {
    color: #343a40;  /* Dark text color for page links */
}

.pagination .page-link:hover {
    color: #ffffff;  /* White text on hover */
    background-color: #343a40;  /* Dark background on hover */
    border-color: #343a40;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;  /* Grey out disabled links */
}
