.app-loader-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.app-loader {
  width: 200px;
  animation: pulse 1.5s infinite ease-in-out;
}

.app-loader-text {
  margin-top: 20px;
  font-family: Arial, sans-serif;
  color: #ec6622;
  font-size: 16px;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}
