/* Fullscreen Loader Overlay */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Centered Content */
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Dot Container */
.dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Dot Styling and Animation */
.dot {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #6793fb;
  animation: pulse 1.5s infinite ease-in-out;
}

.dot:last-child {
  margin-right: 0;
}

/* Delay Each Dot */
.dot:nth-child(1) { animation-delay: -0.3s; }
.dot:nth-child(2) { animation-delay: -0.1s; }
.dot:nth-child(3) { animation-delay: 0.1s; }
.dot:nth-child(4) { animation-delay: 0.3s; }
.dot:nth-child(5) { animation-delay: 0.5s; }

/* Animation Keyframes */
@keyframes pulse {
  0% {
    transform: scale(0.8);
    background-color: #b3d4fc;
    box-shadow: 0 0 0 0 rgba(103, 147, 251, 0.5);
  }
  50% {
    transform: scale(1.2);
    background-color: #6793fb;
    box-shadow: 0 0 0 10px rgba(103, 147, 251, 0);
  }
  100% {
    transform: scale(0.8);
    background-color: #b3d4fc;
    box-shadow: 0 0 0 0 rgba(103, 147, 251, 0.5);
  }
}

/* Loading Text */
.loading-text {
  font-size: 16px;
  color: #6793fb;
  text-align: center;
  font-weight: 500;
}
