/* Pagy ページネーション スタイルシート */
/* https://ddnexus.github.io/pagy/docs/api/stylesheets/ */
.pagy {
  @apply flex space-x-2 text-sm text-stone-600;
  a:not([role="separator"]) {
    @apply block rounded-lg py-1.5 px-3 border border-stone-200;
    &[href]:hover {
      @apply bg-stone-100;
    }
    &:not([href]) {
      /* disabled links */
      @apply text-stone-400 border-stone-200 bg-stone-200 cursor-default;
    }
    &[aria-current] {
      @apply text-white bg-black border-black;
    }
  }
}
