/* 93-back-to-top.css — extracted from main.css */

/* BACK TO THE TOP BUTTON */

#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #1e73be;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
    display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(30,115,190,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
  z-index: 999;
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(30,115,190,.45);
}

#backToTop.visible {
  opacity: 1;
  pointer-events: auto;
}
