:root{
  --besave-blue: #009fe3;
  --besave-black: #111111;
}

body { color: var(--besave-black); }

.chat-log{
  height: 440px;
  overflow: auto;
  background: #f6f7f9;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 12px;
}

.chat-row{ display:flex; margin: 10px 0; }
.chat-row.me{ justify-content:flex-end; }
.chat-row.bot{ justify-content:flex-start; }

.chat-bubble{
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 14px;
  white-space: pre-wrap;
}

.chat-row.me .chat-bubble{
  background: var(--besave-black);
  color: #fff;
}

.chat-row.bot .chat-bubble{
  background: #fff;
  border: 1px solid #e7e7e7;
  color: var(--besave-black);
}

.chat-sources{ margin-left: 6px; }
