.scroll-indicator {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  /*Optional: adds a solid white background inside the ring;*/
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  /*Optional: soft drop shadow;*/
}

/* This class is added by Javascript when the user scrolls down */

.scroll-indicator.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* SVG Formatting */

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.1s linear;
  stroke-linecap: round;
}

.arrow-up {
  z-index: 2;
}

