.custom-loading-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  z-index: 99999;
}

.custom-loading-overlay.show {
  display: flex;
}

.custom-loading-image {
  animation: custom-rotate 1s linear infinite;
}

@keyframes custom-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


