/* ScrollToTop.css */
.scroll-to-top {
  position: fixed;
  bottom: 26px !important;
  right: 30px !important;
  background-color: #23aaea;
  color: white !important;
  border: none !important;
  border-radius: 4px;
  width: 50px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #1193d0;
}
