#help-topic-select {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
}

#topic-go-button {
  font-size: 22px;
  color: #000000;
  font-weight: 700;
  padding: 16px 25px;
  background-color: var(--gt-gold);
  border-radius: 4px;
  cursor: pointer;
}

#help-topic-select fieldset {
  max-height: 200px;
  overflow-y: scroll;
  border: 1px solid #e0e0e0;
}

#help-topic-select .form-item {
  flex: 1;
}
#help-topic-select .form-item select {
  width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
#help-topic-select .form-item select > option {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.help-option {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0.3em;
  border-bottom: 1px solid #e0e0e0;
}
.help-option input {
  margin-top: 0.5em;
  margin-right: 0.5em;
}
ul#help-topic-options {
  overflow-y: scroll;
  height: 180px;
  border: 1px solid #eee;
  padding-left: 8px;
}
#help-topic-options li {
  cursor: pointer;
  list-style: none;
  margin-left: 0;
}
#help-topic-options li:hover {
  background: #eee;
}

/** EOF to help git. **/

