/* Container styling */
#chatbox {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  height: 80vh;
  overflow-y: auto;
}

/* Messages styling */
.message {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 15px;
  margin: 10px;
  max-width: 70%; /* Limits bubble width */
  word-wrap: break-word;
  white-space: pre-wrap;
  clear: both;
}

/* User message styling */
.user {
  background-color: #007aff;
  color: white;
  text-align: right;
  float: right;
  border-bottom-right-radius: 0;
}

/* Bot message styling */
.bot {
  background-color: #e0e0e0;
  color: black;
  text-align: left;
  float: left;
  border-bottom-left-radius: 0;
}
