/* Preloader container */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* background color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader inner container */
.loader-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Bouncing bars */
.bouncing-bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 50px;
  width: 60px;
  margin-bottom: 15px;
}

.bouncing-bars div {
  width: 8px;
  height: 100%;
  background: #ff6600; /* brand color */
  animation: bounce 0.6s infinite ease-in-out;
}

.bouncing-bars div:nth-child(1) {
  animation-delay: 0s;
}
.bouncing-bars div:nth-child(2) {
  animation-delay: 0.1s;
}
.bouncing-bars div:nth-child(3) {
  animation-delay: 0.2s;
}
.bouncing-bars div:nth-child(4) {
  animation-delay: 0.3s;
}
.bouncing-bars div:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%,
  100% {
    transform: scaleY(0.3);
  }
  50% {
    transform: scaleY(1);
  }
}

/* Loading text */
.loading-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #333333;
  text-align: center;
}
