/* Scroll to Top Button Styles */
.scroll-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(to left, #40B977 0%, #40B977 51%, #40B977 100%);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
  display: flex;
}

.scroll-to-top i {
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  width: 100%;
} 