/* Pagination custom styles for AdminKit */
.pagination-rounded {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding-left: 0;
}

.pagination-rounded .page-item {
  display: inline-block;
  margin: 0;
}

.pagination-rounded .page-link {
  border-radius: 0.375rem !important;
  margin: 0 0.25rem;
  min-width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  border: 1px solid #dee2e6;
  color: #6c757d;
  text-decoration: none;
}

.pagination-rounded .page-item:first-child .page-link,
.pagination-rounded .page-item:last-child .page-link {
  border-radius: 0.375rem !important;
}

.pagination-rounded .page-item.active .page-link {
  background-color: #3b7ddd;
  border-color: #3b7ddd;
  color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(59, 125, 221, 0.4);
  transform: translateY(-1px);
}

.pagination-rounded .page-link:hover:not(.disabled) {
  background-color: #f8f9fa;
  border-color: #dee2e6;
  color: #3b7ddd;
  transform: translateY(-1px);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.pagination-rounded .page-item.disabled .page-link {
  background-color: transparent;
  border-color: transparent;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.5;
}