.splash-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.splash-screen .splash-loader {
  width: 200px;
}
.splash-screen .splash-text {
  font-size: 20px;
  color: #495057;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.splash-screen .splash-progress-bar {
  width: 100%;
  height: 4px;
  background-color: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.splash-screen .splash-progress-fill {
  position: absolute;
  height: 100%;
  width: 30%;
  background-color: #495057;
  border-radius: 2px;
  animation: progress-bar-slide 1.5s ease-in-out infinite;
}

@keyframes progress-bar-slide {
  0% {
    left: -30%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -30%;
  }
}
