.pagy {
  @apply flex space-x-1 font-semibold text-sm text-gray-500;
  a:not(.gap) {
    @apply inline-flex size-8 px-3 py-1 bg-gray-200 rounded-sm;
    &:hover {
      @apply bg-gray-300;
    }
    &:not([href]) { /* disabled links */
      @apply text-gray-400 bg-gray-50 border border-gray-200 cursor-default;
    }
    &.current {
      @apply text-white bg-orange-600 border-orange-600;
    }
  }
  label {
    @apply inline-block whitespace-nowrap bg-gray-200 rounded-sm px-3 py-0.5;
    input {
      @apply bg-gray-100 border-none rounded-md;
    }
  }
}
