@tailwind base;
@tailwind components;
@tailwind utilities;
body {
  @apply leading-[normal] m-0;
}
a{
text-decoration: none;
}
*,
::before,
::after {
  border-width: 0;
scroll-behavior: smooth;

}

.popup-overlay {
  @apply flex flex-col fixed inset-0;
}
@layer utilities {
  @variants responsive  {
    /* Hide scrollbar for Chrome, Safari and Opera */
    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    .no-scrollbar {
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }
  }
}