/* Style loading overlay */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 9, 9, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Saat loading aktif, body tidak bisa discroll */
body.loading-active {
  overflow: hidden;
  height: 100%;
  position: fixed;   /* kunci body agar tidak bisa digeser */
  width: 100%;
}

