/* Styles for the Go to Top button */
#goTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 20px;
  display: none; /* Hidden by default */
  cursor: pointer;
}

#goTopBtn:hover {
  background-color: #0056b3;
}

/* Center the icon in the button */
#goTopBtn i {
  font-size: 24px;
}