.chat-content-wrapper .message-container {
  position: relative;
  padding: 12px 12px;
  border-radius: 8px;
  /* max-width: 65%; */
  min-width: 130px;
  word-wrap: break-word;
  width: fit-content;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 300;
  white-space: pre-wrap;
}

.chat-content-wrapper .sent-card .message-container {
  background-color: var(--secondary);
  color: var(--onSecondary);
  border-top-right-radius: 0;
  margin: 28px 0 0 auto;
  box-shadow: rgba(0, 0, 0, 0.15) -2.4px 2.4px 3.2px;
}

.chat-content-wrapper .receive-card .message-container {
  background-color: var(--tertiary);
  color: var(--onTertiary);
  border-top-left-radius: 0;
  margin: 28px auto 0 0;
  box-shadow: rgba(0, 0, 0, 0.15) 2.6px 2.4px 3.2px;
}

.chat-content-wrapper .sent-card .message-container:before {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid var(--secondary);
  border-right: 10px solid transparent;
}

.chat-content-wrapper .receive-card .message-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid var(--tertiary);
  border-left: 10px solid transparent;
}
