#scroll-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: none;
  padding: 0;
  background: #000;
  color: #fff;
  cursor: pointer;
  display: none;              /* wird per JS ein-/ausgeblendet */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* sichtbarer Zustand */
#scroll-to-top.show {
  display: flex;
}

/* Text im Button nur für Screenreader sichtbar lassen */
#scroll-to-top span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* der eigentliche Pfeil als CSS-Dreieck */
#scroll-to-top::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid #fff;
}
