/* Info */

.pagination-page-info {
  text-align: center;
  margin: 2rem 0 1rem 0;
  color: #757575;
}

/* Pagination */

ul.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  /* overflow: scroll; */
  gap: 0.1rem;
}

.sr-only {
  display: none;
}

.page-item {
  padding: 0.375rem 0.75rem;
  /* border: solid 1px #dee2e6; */
  border-radius: 0.375rem;
  position: relative;
  transition: background-color 0.2s ease-in-out;
}

.page-item a {
  text-decoration: none;
}

.page-item a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.page-item:hover {
  cursor: pointer;
  background-color: #e9ecef;
}

.page-item:focus,
.page-item:active {
  background-color: #e9ecef;
}

.page-item.active {
  background-color: #3e3e3e;
}

.page-item.active a {
  color: #fff;
}

.page-item.disabled {
  color: rgba(33, 37, 41, 0.75);
  /* background-color: #e9ecef; */
  pointer-events: none;
}

.page-item.disabled:first-child,
.page-item.disabled:last-child {
  display: none;
}

.page-item.disabled:has(span) {
  padding: 0.1rem 0.2rem;
}
