
*{
    margin: 0;
    padding: auto;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
}
body {
    background:#104983;
}
.container {
    
    height: 450px;
    width: 350px;
    background-color: aliceblue;
    position: fixed;
    bottom: 50px;
    right: 30px;
    box-shadow: 0px 0px 15px 0px black;
    border-radius: 0px 5px 10px 20px;
    
}
.chat-header {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0px 30px;
    background-color:rgb(25, 25, 235);
    color: #fff;
    font-size: 1.5rem;
}
.chat-header.logo{
    height: 17px;
    width: 60px;
    box-shadow: 0px 0px 10px 0px black;
}
.chat-header img{
    height: 50px;
    width: 50px;
    padding: 3px;
}
.chat-header title{
    padding-left: 10px;

}
.chat-body{
height: 300px;
display: flex;
flex-direction: column;
padding: 8px 10px;
overflow-y: auto;
align-items: flex-end;

}
.chat-input{
    height: 60px;
    display: flex;
    align-items: center;
    border-top: 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;
    width: max-content;
    border-radius: 10px 4px 10px 10px;
}
.chatbot-message{
  background:#467dca;
  color: var(--light-color);
  align-self: flex-start;
  border-radius: 10px 10px 3px 10px;
}