/* DESIGN NG LOADING */
.loader {
  border: 8px solid #e0e0e0; /* Slightly darker light gray border */
  border-radius: 50%;
  border-top: 8px solid blue; /* Top color */
  border-bottom: 8px solid blue; /* Bottom color */
  width: 90px; /* Smaller width */
  height: 90px; /* Smaller height */
  -webkit-animation: spin 1.5s linear infinite; /* Smooth spin */
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#loading-indicator {
  display: none !important; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); /* Semi-transparent white background */
  z-index: 99999; /* Very high value to ensure it appears on top */
  display: flex;
  align-items: center;
  justify-content: center;
}