@tailwind base;
@tailwind components;
@tailwind utilities;

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