/* Ensure loader is visible initially */
#loader {
  display: block;
  /* Hide initially */
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  /* Ensure it appears above everything */
  background-color: white !important;
  /* Background color for the loader */
}

/* Overlay to cover the entire screen */
#overlay {
  display: block;
  /* Hide initially */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  /* White overlay with some transparency */
  z-index: 1000;
  /* Ensure it appears below the loader */
}