.LoadingPage .loading {
  display: flex;
  justify-content: center; /* Horizontally centers content (optional) */
  align-items: center; /* Vertically centers content */
  height: 100vh; /* Example: make container fill viewport height */
  flex-direction: column;
}

.LoadingPage .logo img {
  height: 30px;
  margin-bottom: 10px;
}

.loading-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Space between dots */
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #A161B3; /* Blue color for the dots */
  border-radius: 50%; /* Make them circular */
  animation: pulse 1.5s infinite ease-in-out; /* Apply the pulse animation */
}

/* Animation delay for each dot to create a staggered effect */
.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* Keyframes for the pulsing animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4); /* Grow larger at the midpoint */
    opacity: 0.6; /* Become slightly transparent */
  }
}
