/* エディタ風コンテナ */
.editor {
    position: relative;
    background: #4a4a4a;       /* ダークトーン背景 */
    color: #d8dee9;            /* 薄めの文字色 */
    font-family: 'Source Code Pro', monospace;
    border-radius: 6px;
    padding: 16px 0 16px 50px; /* 左に行番号用スペースを確保 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    overflow: auto;
    margin-top: 10px;
  }

  /* 行番号 */
  .editor::before {
    counter-reset: line;
    content: "";
    position: absolute;
    top: 16px;
    left: 16px;
    width: 30px;
    text-align: right;
    color: #4c566a;
    font-size: 14px;
    line-height: 1.5em;
    white-space: pre;
  }

  .editor code {
    display: block;
    counter-increment: line;
    line-height: 1.5em;
    font-size: 14px;
    white-space: pre;
  }

  /* 擬似要素で行番号を挿入 */
  .editor code::before {
    content: counter(line);
    display: inline-block;
    width: 30px;
    margin-left: -50px;
    padding-right: 10px;
    text-align: right;
    color: #4c566a;
  }
  /*ulのデフォルトスタイルを削除*/
  ul {
    list-style-type: none;
    padding-left: 0;
  }
  li {
    margin-bottom: 10px;
  }
  /*liの中のulは段落をつける*/
  li ul {
    margin-left: 20px;
  }
  /*コメントのスタイル*/
  .comment-out {
    color: #28a745; /* グリーン */
  }