/* custom.css */
.scroll-button {
  position: fixed;
  right: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.scroll-button:hover {
  opacity: 1;
}

.scroll-up {
  bottom: 80px;
  display: none;
}

.scroll-down {
  bottom: 20px;
}
