/* Minimal styles for scroll-to-top button */
.scrollToTop {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 350;
  transform: translateX(100%);
  background-color: var(--Power-Lime, #ADFF60);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.scrollToTop.button-show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.scrollToTop:after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--Volt-Green-New-Dark, #0F3F36);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M6 19.2824L6 0.710938' stroke='%230F3F36' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 5.71094L6 0.710937L1 5.71094' stroke='%230F3F36' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M6 19.2824L6 0.710938' stroke='%230F3F36' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 5.71094L6 0.710937L1 5.71094' stroke='%230F3F36' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
