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

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