﻿.chat-message-outgoing {
  border-radius: 10px;
  min-width: 25%;
  max-width: 75%;
  min-height: 0;
  background-color: #aad2e7;
}
.chat-message-incoming {
  border-radius: 10px;
  min-width: 25%;
  max-width: 75%;
  min-height: 0;
  background-color: #e6f2fa;
}
.chat-messages {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  justify-content: space-between;
}
.chat-messages .k-listview-content {
  display: flex;
  flex-direction: column-reverse;
  overflow-y: auto;
}
.chat-conversation {
  border-radius: 5px;
  background-color: #e6f2fa;
  cursor: pointer;
  display: flex;
  padding: 5px;
}
.chat-conversation.k-state-selected {
  background-color: #c8e2ef;
}
.chat-conversations {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  justify-content: space-between;
}
.chat-conversations .k-listview-content {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  gap: 5px;
  padding: 0 5px 0 5px;
}