   /* Loading css _ Thang */
 #global-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2000; /* đảm bảo lớn hơn modal bootstrap (1050–1060) */
  display: none; /* ẩn mặc định */
  justify-content: center;
  align-items: center;
  pointer-events: auto; /* kích hoạt bắt sự kiện chuột */
}

#global-loader {
  z-index: 2001; /* cao hơn overlay */
}

body.loading {
  overflow: hidden;
}

body.loading #global-overlay {
  display: flex !important;
}