.loader-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  max-height: 100vh;
  min-height: 100vh;
  background-color: #fff;
  position: absolute;
  width: 100%;
  left: 0px;
  right: 0px;
  top: 0px;
}

.loading-image {
  width: 200px;
  height: 100px;
  margin-bottom: 20px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.loading-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  font-family: Arial, sans-serif;
}
