
#scrollToTopBtn {
  display: none; /* Hide by default */
  position: fixed; /* Fixed position */
  bottom: 20px; /* Distance from bottom */
  right: 20px; /* Distance from right */
  z-index: 99; /* Ensure it appears above other content */
  padding: 10px 15px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#scrollToTopBtn:hover {
  background-color: #ff0000;
}
