body {
  font-family: sans-serif;
  padding: 1em;
}

.disclaimer-text {
  color: #6b6b6b;
  font-size: 12px;
  vertical-align: super;
}

.pre-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 800px;
}

.output-buttons {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 6px;
}

.output-buttons button {
  font-size: 12px;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 5px;
}

#saveTextBtn {
  background-color: #0a8d93;
  color: white;
  font-size: 13px;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  display: none;

  text-decoration: none;
  align-items: center;
  justify-content: center;
  vertical-align: center;
  font-family: inherit;
  line-height: normal;
}

#saveTextBtn:hover {
  background-color: #087b80;
}

pre {
  background-color: #f8f8f8;
  padding: 2.5em 1em 1em 1em;
  border: 1px solid #cccccc;
  overflow: auto;
  user-select: text;
  white-space: pre-wrap;
}

/* Floating contact info box */
.floating-info-box {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  padding: 1em;
  font-size: 0.9em;
  position: relative;
  margin-top: 2em;
}
@media (min-width: 800px) {
  .floating-info-box {
    position: absolute;
    top: 1em;
    right: 1em;
    width: 300px;
    max-width: 30%;
    z-index: 2;
    margin-top: 0;
  }

  body {
    padding-right: 320px;
  }
}
