.nav-item {
  position: relative;
}
.nav-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #16a34a; /* green-600 */
  transition: width 0.3s;
}
.nav-item:hover::after {
  width: 100%;
}
.nav-item.active {
  color: #16a34a;
  font-weight: 600;
}
.nav-item.active::after {
  width: 100%;
}

/* Mencegah scroll saat menu mobile terbuka */
body.menu-open {
  overflow: hidden;
}

/* Fix untuk mobile menu agar selalu di atas */
#mobile-menu-overlay {
  z-index: 9998 !important;
}
#mobile-sidebar {
  z-index: 9999 !important;
}
