.tl-textEntry {
  display: flex;
  flex-direction: column;
  margin: 0 0 1rem 0;
  gap: 0.2em;
}
.tl-textEntry_label {
  font-weight: bold;
  font-size: 1.2em;
}
.tl-textEntry_desc {
  margin: 0;
}
.tl-textEntry_textarea {
  border: 0.25rem solid var(--color-background-3);
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
}
.tl-textEntry_textarea:focus {
  outline: 0.15rem solid #420065;
  outline-offset: 0.2rem;
}
.theme-dark .tl-textEntry_textarea {
  border: 0.25rem solid var(--color-accent-3);
}
.theme-dark .tl-textEntry_textarea:focus {
  outline: 0.15rem solid #FFF;
}
.tl-textEntry_submitBtn {
  background: var(--color-background-3);
  border: none;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  min-width: 6rem;
  text-decoration: none;
  padding: 0.25rem 1rem;
  width: max-content;
  white-space: nowrap;
}