/* back-to-top.css */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10001;
  border: none;
  outline: none;
  background-color: #245CDB;
  color: white;
  cursor: pointer;
  padding: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

#backToTopBtn:hover {
  background-color: #1e293b;
  transform: scale(1.08);
}

@media (max-width: 1023px) {
  #backToTopBtn {
    bottom: 76px !important;
    right: 18px !important;
    z-index: 10001 !important;
  }
}
