/* 全体 */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  font-size:35px;
  background-color: #e5ddd5;
  display: flex;
  flex-direction: column;
  /*
  height: 100vh;
  */
  height: 100%;

}

/* チャット画面全体 */
.chat-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* チャットエリア */
.chat-area {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* 吹き出し共通 */
.bubble {
  max-width: 70%;
  padding: 10px 14px;
  border-radius: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
  position: relative;
  word-wrap: break-word;
}

/* 受信メッセージ（左） */
.bubble.receive {
  align-self: flex-start;
  background-color: #fff;
  border-top-left-radius: 0;
}

/* 送信メッセージ（右） */
.bubble.send {
  align-self: flex-end;
  background-color: #dcf8c6;
  border-top-right-radius: 0;
}

/* 入力フォーム */
.input-area {
  display: flex;
  padding: 10px;
  background-color: #fff;
  border-top: 1px solid #ccc;
}

.input-area input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  outline: none;
  font-size: 35px; /* 好きなサイズに変更可能 */
}

.input-area button {
  margin-left: 10px;
  padding: 0 16px;
  border: none;
  background-color: #00bfa5;
  color: white;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  font-size: 35px; /* 好きなサイズに変更可能 */
}
