.scrollTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #dce4e8;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.scrollTop.show {
  opacity: 1;
  pointer-events: auto;
}

.scrollTop:hover {
  background-color: #cad6dc;
  /* slate-60 hover */
}

.scrollTop:focus {
  outline: 3px solid #000;
  /* visible focus ring */
  outline-offset: 2px;
}

/* screen reader text */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


.html-report__body:not(:has(.footnotes))+.html-report__navigation {
  border-top: 1px solid #0c0000;
  padding-top: 20px;
}

.html-report__body:not(:has(.footnotes)) {
  margin-bottom: 20px;
}