/* Scroll Progress Component - magicui style */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 50;
  background: linear-gradient(to right, #A97CF8, #F38CB8, #FDCC92);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s ease-out;
}

.scroll-progress.active {
  transform: scaleX(var(--progress, 0));
}
