body {
  padding: 0;
  margin: 0;
}

.chatbot-interface {
  display: flex;
  flex-direction: column;
  margin-top: 1vh;
}

.bot-face {
  flex-direction: row;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.robot-img {
  height: 25vh;
}

.chat-container {
  margin-top: 2vh;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
}

.chat-form {
  display: flex;
}

.chat-input {
  width: 40vw;
  font-size: 1.5em;
}

.btn-chat-send {
  width: 10vw;
  font-size: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chatbox-container {
  margin-top: 2vh;
  display: flex;
  justify-content: center;
}

.chatbox {
  width: 50vw;
  max-height: 30vh;
  /* border: 1px solid gray; */
  display: flex;
  flex-direction: column;
  padding: 10px;
  font-size: 0.9em;
  overflow: hidden;
  overflow-y: scroll;
}

.chat-item {
  color: black;
}

.chat-item-user {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-style: italic;
  margin: 0.3em 0;
  background-color: antiquewhite;
  padding: 0.2em;
}

.chat-item-bot {
  font-family: "Roboto Mono", monospace;
  text-align: right;
  margin: 0.3em 0;
  background-color: rgb(216, 224, 236);
  padding: 0.2em;
}
