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