/* Isolated styles for the pre-app top progress bar */
#top-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  overflow: hidden;
  z-index: 999999;
}

#top-progress .bar {
  position: absolute;
  top: 0;
  left: -30%;
  height: 100%;
  width: 30%;
  background: var(--initial-loader-color, #002544);
  animation: topbar-slide 1.2s infinite ease-in-out;
}

@keyframes topbar-slide {
  0% { left: -30%; width: 30%; }
  50% { left: 35%; width: 30%; }
  100% { left: 100%; width: 40%; }
}


