.pagy {
  display: flex;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.pagy a:not(.gap) {
  display: block;
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: #e5e7eb;
  transition: background 0.2s, color 0.2s;
}

.pagy a:not(.gap):hover {
  background: linear-gradient(to right, var(--primary-color, #412c78), var(--secondary-color, #9333ea)) !important;
  color: #fff !important;
}

.pagy a:not(.gap):not([href]) {
  color: #d1d5db;
  background-color: #f3f4f6;
  cursor: default;
}

.pagy a:not(.gap).current {
  color: #fff !important;
  background: linear-gradient(to right, var(--primary-color, #412c78), var(--secondary-color, #9333ea)) !important;
}

.pagy label {
  display: inline-block;
  white-space: nowrap;
  background-color: #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.125rem 0.75rem;
}

.pagy label input {
  background-color: #f3f4f6;
  border: none;
  border-radius: 0.375rem;
}