#gloss-container {
    width: max-content;
    margin-bottom: 1em;
  }
  .row {
    display: flex;
    flew-direction: row;
    margin-bottom: 6px;
  }
  input[type="text"] {
    width: 110px;
    margin-right: 3px;
    padding: 3px 5px;
    box-sizing: content-box;
  }
  .row .stdLine:last-child {
      margin-right: 0;
  }
  .row .lastLine {
      flex: 1 0 auto; /* goes over whole width */
      margin-right: 0;
  }
  input:focus {
    border: 2px solid #0078d7;
    outline: none;
    background: #eef6ff;
  }

  #result {
      width: 100%;
      display: flex;
      flex-direction: row;
  }  
  
  div#result div {
      width: 50%;
      display: flex;
      flex-direction: column;
  }
  textarea {
      resize: none;
  }

  #app-creator{
      position: absolute;
      right: -110px;
      top: 135px;
      font-size: 10px;
      transform: rotate(-90deg);
      transform-origin: left top;
  }
