body {
    background-color: #111;
}

.catchcopy-maker-page {
    color: #fff;
    background-color: #111;
  }

  .catchcopy-maker-page .main-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* 出力テキスト */
#resultText {
    font-size: 1.5rem;
    margin-bottom: 30px;  /* ← ここで余白を調整 */
    padding: 15px;
    background-color: #222;
    border-radius: 8px;
    display: inline-block;
    max-width: 90%;
    color: #fff;
    white-space: pre-wrap;  /* 長文改行に対応 */
    word-break: break-word;
  }

  /* シェアボタンの間隔もつけるなら */
  .share-buttons button {
    margin: 0 10px;
  }
