@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&family=Poppins:wght@200;300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  --background: #4b5c66;
}
.container1 {
  --light-color: #fff;
  height: 260px;
  width: 500px;
  margin-left: 20px;
  margin-top: 30px;
  background: var(--light-color);
  position: fixed;
  --bottom: 150px;
  --right:320px;
  box-shadow: 1px 1px 15px 1px #ccc;
}
.chat-header {
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0px 30px;
  background-color: #0652c0;
  color: var(--light-color);
  font-size: 1.5rem;
}

.chat-header .logo {
  height: 35px;
  width: 35px;
  box-shadow: 1px 1px 10px 1px black;
}
.chat-header img {
  height: 100%;
  width: 100%;
}
.chat-header .title {
  padding-left: 10px;
  color: white;
}

.chat-body {
  height: 200px;
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  padding-bottom: 50px;
  align-items: flex-end;
  overflow-y: auto;
  border: 1px solid #ccc;

}
.chat-input {
  height: 60px;
  display: flex;
  align-items: center;
  border-top: 0px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;

}
.input-sec {
  flex: 9;
}
.send {
  flex: 1;
  padding-right: 4px;
}
#txtInput {
  line-height: 30px;
  padding: 8px 10px;
  border: none;
  outline: none;
  caret-color: black;
  font-size: 1rem;
  width: 100%;
}

.chatbot-message,
.user-message {
  padding: 8px;
  background: #ccc;
  margin: 5px;
  --margin-bottom: -40px;
  width: max-content;
  border-radius: 10px 3px 10px 10px;
  white-space: pre-line;
}
.chatbot-message {
  background: #0652c0;
  color: white;
  align-self: flex-start;
  border-radius: 10px 10px 3px 10px;
  --margin-bottom: 60px;
}
