#dreamit-chatbot {
  border: 1px solid #ddd;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  border-radius: 30px;
}
.chat-window {
  height: 300px;
  overflow-y: auto;
  margin-bottom: 10px;
  padding: 5px;
  border: 1px solid #eee;
  background: #fafafa;
  display: flex;
  flex-direction: column;
}
.user-msg {
  display: inline-block;
  text-align: right;
  margin: 5px;
  background: #0073aa;
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  align-self: flex-end;
}
.bot-msg {
    display: inline-block;
    text-align: left;
    margin: 5px;
    background: #100A27;
    padding: 5px 10px;
    border-radius: 8px;
    align-self: flex-start;
    color: #fff;
}
#chat-input {
    width: 90%;
    padding: 13px;
    border-radius: 9px;
    border: 1px solid #100A27;
    background: #231F3A;
    color: #fff;
}
#chat-input:focus-visible {
    border-color: #100A27;
    border: 2px solid #fff;
    outline:0; 
}
button#chat-send-btn {
    background: #6766FF;
    border: none;
    color: #fff;
    padding: 14px 38px;
    border-radius: 10px;
    margin-left: 0;
    margin-top: 10px;
}
#chat-input {
    width: 100%; 
}
