.back-to-top {
  display: none; /* Initially hidden */
  position: fixed;
  bottom: 20px; /* Adjust for spacing from bottom */
  right: 30px; /* Adjust for spacing from right */
  z-index: 9999;
  font-size: 16px; /* Adjust font size if needed */
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  text-decoration: none; /* Remove underline */
  padding: 15px 25px; /* Add spacing for text */
  border-radius: 50%; /* Round shape */
  cursor: pointer;
  font-weight: bold; /* Bold text */
}

.back-to-top:hover {
  background-color: #333; /* Darker gray on hover */
}