.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-content {
  padding: 1rem;
  background-color: rgba(29, 53, 110, 0.05);
  border-radius: 0.5rem;
  display: flex;
  gap: 0.5rem;
}
.page-numbers {
  color: #374151;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;

  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-decoration: unset;
}
.page-numbers.current {
  color: #fff;
  background-color: #153164;
}
.page-numbers.prev,
.page-numbers.next {
  color: #6b7280;
}
