/*.mouse-move-big,
.mouse-move-sm {
  position: fixed;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 4000001;
  pointer-events: none;
}

.mouse-move-big {
  width: 40px;
  height: 40px;
  border: 2px solid white;
  left: 0;
  top: 0;
  transition: 0.15s;
  background: rgba(255, 179, 28, 0);
}

.mouse-move-sm {
  width: 8px;
  height: 8px;
  background-color: white;
  left: 0;
  top: 0;
  transition: 0.2s;
}
*/


#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
    opacity: 1;
}

#loadingOverlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Spinner Style */
.spinner {
    width: 30px;
    height: 30px;
    border: 6px solid white;
    border-top: 6px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


