.cbq-chat-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cbq-chat-bubble {
  --bubble-color: #ffffff;
  position: relative;
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--bubble-color);
  color: #111;
  line-height: 1.4;
  word-wrap: break-word;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

/* Messenger */
.cbq-fb-left {
  align-self: flex-start;
  border-top-left-radius: 4px;
  --bubble-color: #f3f4f8;
  color: #000000;
}

.cbq-fb-right {
  align-self: flex-end;
  border-top-right-radius: 4px;
  --bubble-color: #0967ff;
  color: #ffffff;
}

/* WhatsApp */
.cbq-wa-left {
  align-self: flex-start;
  border-top-left-radius: 4px;
  --bubble-color: #242625;
  color: #ffffff;
}

.cbq-wa-right {
  align-self: flex-end;
  border-top-right-radius: 4px;
  --bubble-color: #134d37;
  color: #ffffff;
}

/* tails */
.cbq-wa-left::before,
.cbq-wa-right::before,
.cbq-fb-left::before,
.cbq-fb-right::before {
  content: "";
  position: absolute;
  top: 0;
  border: 8px solid transparent;
}

.cbq-wa-left::before,
.cbq-fb-left::before {
  left: -8px;
  border-top-color: var(--bubble-color);
}

.cbq-wa-right::before,
.cbq-fb-right::before {
  right: -8px;
  border-top-color: var(--bubble-color);
}

.cbq-chat-bubble img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
  margin-top: 6px;
}

.cbq-image-only {
  padding: 4px;
  background: transparent;
  box-shadow: none;
}

.image-only img {
  border-radius: 12px;
}

.cbq-chat-bubble img {
  max-width: 75%;
}

.cbq-chat-bubble.emoji {
  font-size: 22px;
}

.cbq-green-underline-white {
  color: white;
  text-decoration-color: lime;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

.cbq-green-underline-black {
  color: black;
  text-decoration-color: lime;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}
