/* Add custom CSS styles below */ 

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  background: #F7E9DF;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85);
  transition: all 0.3s ease;
  z-index: 999999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.back-to-top:hover {
  transform: scale(1.08);
}

/* السهم */
.back-to-top .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* حلقة التقدم */
.progress-ring {
  width: 52px;
  height: 52px;
}

.progress-ring__circle {
  stroke: #000;
  stroke-width: 4;
  transition: stroke-dashoffset 0.2s linear;
}