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

.calc-h-main {
  height: -moz-calc(100% - 97px); /* Firefox */
  height: -webkit-calc(100% - 97px); /* Chrome, Safari */
  height: calc(100% - 97px); /* IE9+ and future browsers */
}

.calc-h-wrapper {
  height: -moz-calc(100% + 40px); /* Firefox */
  height: -webkit-calc(100% + 40px); /* Chrome, Safari */
  height: calc(100% + 40px); /* IE9+ and future browsers */
}

.bg-amber-light {
  background-color: #fffdf7;
}

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