/**
 * Back to Top Button Styles
 */

#back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 24px;
  border: none;
  cursor: pointer;
  z-index: 9999;
  display: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#back-to-top-btn:hover {
  background-color: #000;
  transform: translateY(-3px);
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  #back-to-top-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }
} 