.loader {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: #3B82F6 !important;
  box-shadow: 20px 0 #3B82F6, -20px 0 #3B82F6 !important;
  position: relative !important;
  animation: loader-dots 1s ease-in-out infinite !important;
  margin: 30px auto !important;
  display: block !important;
  content: none !important; /* Remove the GIF */
}

@keyframes loader-dots {
  0%, 100% {
    box-shadow: 20px 0 rgba(59, 130, 246, 0.2), -20px 0 rgba(59, 130, 246, 1);
    background-color: rgba(59, 130, 246, 0.5);
  }
  33% {
    box-shadow: 20px 0 rgba(59, 130, 246, 0.5), -20px 0 rgba(59, 130, 246, 0.2);
    background-color: rgba(59, 130, 246, 1);
  }
  66% {
    box-shadow: 20px 0 rgba(59, 130, 246, 1), -20px 0 rgba(59, 130, 246, 0.5);
    background-color: rgba(59, 130, 246, 0.2);
  }
}

.loader-center {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px !important;
  width: 100% !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin: 0 !important;
}

.loader-text {
  display: none !important;
}
