.conference-chat-directive {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.conference-chat-directive .chat-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: auto;
}

.conference-chat-directive .chat-input-container {
  display: flex;
  align-items: center;
  margin-top: 8px;
  border: 2px solid rgba(var(--color-alpha-grey));
  border-radius: var(--default-radius-large);
  height: 36px;
  box-sizing: border-box;
  max-width: 320px;
}

.conference-chat-directive .chat-input-container input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
  background-color: transparent;
}

.conference-chat-directive .chat-input-container button {
  padding: 0;
  margin: 0;
}

.conference-chat-directive .chat-message {
  margin: 5px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-shrink: 0;
}

.conference-chat-directive .message-wrapper {
  display: inline-block;
  background: rgba(var(--background-content-accent));
  border-radius: 0 var(--default-radius-large) var(--default-radius-large) var(--default-radius-large);
  margin-right: 42px;
  min-height: 66px;
}

.conference-chat-directive .message-self {
  justify-content: flex-end !important;
}

.conference-chat-directive .message-self .message-wrapper {
  margin-left: 42px;
  margin-right: 0;
  border-radius: var(--default-radius-large) 0 var(--default-radius-large) var(--default-radius-large);
}

.message-info {
  font-size: 10pt;
  padding: 8px;
  display: block;
  text-align: right;
}

.message-content {
  overflow-wrap: break-word;
  word-break: break-word;
  padding: 8px;
  display: flex;
}