/* Bouncing dots loading animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
  
.bouncing-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.bouncing-dots div {
  width: 20px;
  height: 20px;
  margin: 0 10px;
  background-color: #e74c3c; /* Red color matching your logo */
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.bouncing-dots div:nth-child(2) {
  animation-delay: 0.2s;
}

.bouncing-dots div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  to {
    transform: translateY(-20px);
  }
}
