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

@layer base {
  h1 {
    @apply text-h1 font-bold;
  }
  h2 {
    @apply text-h2 font-semibold;
  }
  h3 {
    @apply text-h3 font-medium;
  }
  h4 {
    @apply text-h4 font-normal;
  }
  h5 {
    @apply text-h5 font-normal;
  }
  h6 {
    @apply text-h6 font-normal;
  }
}

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