/* ------------------- jump to up -------------------- */
.jump-to-up-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* Ensure the button stays on top of other content */
}

.jump-to-up {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.jump-to-up:hover {
  opacity: 0.4;
}

.jump-to-up img {
  width: 100%;
  height: 100%;
}
