/* Scroll to Top Button Styles */
#scrollToTopBtn {
  position: absolute;
  bottom: calc(55px + 13px);
  right: 25px;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
}

#scrollToTopBtn:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
