.twitter-tweet iframe {
    display: none !important;
}
.chat {
  max-width: 720px;
  margin: 24px auto;
  font-family: system-ui, sans-serif;
  color: #fff; /* 全体の文字色を白系に */
}

.bubble {
  position: relative;
  display: inline-block;
  padding: 12px 14px;
  margin: 8px 0;
  border-radius: 14px;
  line-height: 1.6;
  max-width: 80%;
}

.bubble.left  {
  background: #333; /* 左吹き出し背景（濃いグレー） */
  margin-right: 20%;
}

.bubble.right {
  background: #0a66c2; /* 右吹き出し背景（青系） */
  margin-left: 20%;
  float: right;
  clear: both;
}

/* 三角（しっぽ） */
.bubble.left::after,
.bubble.right::after {
  content: "";
  position: absolute;
  top: 12px;
  border: 8px solid transparent;
}

.bubble.left::after  {
  left: -16px;
  border-right-color: #333; /* 左吹き出しのしっぽ色 */
}

.bubble.right::after {
  right: -16px;
  border-left-color:  #0a66c2; /* 右吹き出しのしっぽ色 */
}

.bubble p {
  margin: 0;
  color: #fff;
}

.bubble img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 6px;
}
