.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.sequence {
  width: 100%;
  word-wrap:break-word;
  display:inline-block;
  overflow-wrap: anywhere;
  margin: 0px 0px 20px 0px;
  font-family: "Space mono", monospace;
  font-size:small;
}


/* Style the table with results summary */
.simple-table {
    width: 100%;
    border-collapse: collapse;
}

/* Left column styling */
.left-column {
    text-align: right;
    padding-right: 10px;
}

/* Right column styling */
.right-column {
    text-align: left;
    padding-left: 10px;
}

.sequence {
    font-family: "Courier New", monospace; /* Use a monospace font for alignment */
    font-size: 16px;
    white-space: pre; /* Preserve whitespace for sequence formatting */
}

.conclusion {
    font-weight: bold;
}

/*---------------------------- changelog ----------------- */
.changelog {
    border-bottom-style: solid;
    border-bottom-color: var(--lightorange);
    border-bottom-width: 1px;
    padding-bottom: 2em;
    padding-top: 2em;
    
}

/*---------------------------- subpage ----------------- */
.subpage-section {
    padding: 100px 0;
}
