.custom-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.custom-loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(34, 197, 94, 0.2); /* Light green */
  border-top-color: #22c55e; /* Green */
  border-radius: 50%;
  animation: custom-spin 1s linear infinite;
}

@keyframes custom-spin {
  to {
    transform: rotate(360deg);
  }
}
