.nexods-scroll-to-top {
  position: fixed;
  bottom: var(--space-padding-xl-24, 24px);
  right: var(--space-padding-xl-24, 24px);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--color-bg-interactive, #0053cf);
  color: var(--color-txt-on-button, #fff);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.2s ease;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nexods-scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.nexods-scroll-to-top:hover {
  background: var(--color-bg-hover, #003d9e);
}

.nexods-scroll-to-top:active {
  background: var(--color-bg-press, #002970);
}

.nexods-scroll-to-top:focus-visible {
  outline: 2px solid var(--color-border-focus, #ca771b);
  outline-offset: 2px;
}

.nexods-scroll-to-top .material-symbols-rounded {
  font-size: 24px;
  line-height: 1;
}
