/* Transparent header styles */
div.transparent-header {
  background-color: transparent !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  top: 70;
  z-index: 9999;
}

div.transparent-header.scrolled {
  background-color: #727e73 !important; /* Primary green */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #727e73;   /* Primary green */
  border: 2px solid white;     /* White border */
  border-radius: 4px;
  cursor: pointer;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, border-color 0.3s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollToTopBtn:hover {
  background-color: #5A635A; /* Darker green on hover */
  border-color: #eee;        /* Lighter border on hover */
}

#scrollToTopBtn svg {
  stroke: white;
  width: 24px;
  height: 24px;
}
