/* Fullscreen overlay for the loading page */
.app-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loading-logo {
  width: 200px;
  margin-bottom: 20px;
}

.loading-bar-container {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

/* The animated loading bar */
.loading-bar {
  height: 100%;
  width: 0; /* Initial width of the loading bar */
  background-color: #4caf50; /* Green color of the loading bar */
  animation: loading 3s linear infinite;
  border-radius: 5px;
}

/* Keyframe animation for the loading bar */
@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
