@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0.9);
  }
}

/* STYLE ANIMASI KATEGORI */
.menu-section {
  transition: all 0.1s ease;
  opacity: 0;
  transform: translateY(10px);
  display: none;
}

.menu-section.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
}
/* ----- */

/* STYLE ANIMASI NOTIFIKASI */
.animate-fade-in {
  animation: fadeIn 0.25s ease-out forwards;
}

.animate-fade-out {
  animation: fadeOut 0.25s ease-in forwards;
}
/* ----- */

a[href*="resend"] {
  color: #0095cf;
  font-weight: 600;
  text-decoration: none;
  background-color: #e0f3fb;
  border: 1px solid #0095cf;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

a[href*="resend"]:hover {
  background-color: #0095cf;
  color: white;
}

@keyframes slide-up {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slide-up 0.3s ease-out forwards;
}

.animate-fade-out {
  animation: fadeOut 0.3s ease-in forwards;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}
