h1 {
    margin: 0 0 10px;
    background: #fff;
    padding: 10px;
    font-size: 20px;
    text-align: center;
}
body {
    background: #eee;
  }
  button {
      width: 49%;
      line-height: 160%;
      height: 40px;
      cursor: pointer;
      background: #006699;
      color: #fff;
      border: none;
      border-radius: 4px;
  }
  textarea {
      width: 100%;
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 10px;
      box-sizing: border-box;
  }

  pre {
      white-space: break-spaces !important;
  }
  .c-result{
    margin-top: 10px;
    background: #dedede;
    padding: 10px;
    overflow-y: scroll;
    height: 600px;
  }
  .c-textarea--small {
      height: 50px;
  }
  .c-textarea--long {
      height: 120px;
  }

  .c-container {
    display: flex;
    flex-wrap: wrap;
  }
  
  .c-main {
    flex: 0 0 50% !important; /* 左側のナビゲーションメニューの幅 */
    padding: 0 10px 0 0;
  }
  
  .c-result {
    flex: 1; /* 右側のコンテンツが残りのスペースを占める */
    padding: 20px;
  }
  tr:first-child td {
    background: #fff;
    font-weight: bold;
  }
  td {
    font-size: 10px;
    border: 1px solid;
  }