body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.chat-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: #fff;
}

.chatbox {
  width: 400px;
  height: 500px;
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 20px;
  overflow-y: auto;
}

.chat-message {
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
}

.chat-message.bot {
  background-color: #e0e0e0;
  text-align: left;
}

.chat-message.user {
  background-color: #009688;
  color: white;
  text-align: right;
}

.continue-btn {
  margin-top: 20px;
  display: none;
}

.continue-btn button {
  padding: 10px 20px;
  background-color: #009688;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
