/* ============================
   GLOBAL T665 DIALOGUE STYLE
   ============================ */

/* "You:" centered */
.t665__question .t665__question-name{
  text-align: center !important;
}

/* "Elena:" left */
.t665__answer .t665__question-name{
  text-align: left !important;
}

/* You message text centered (override inline ) */
.t665__question .t665__question-text p{
  text-align: center !important;
}

/* Elena message text left */
.t665__answer .t665__question-text p{
  text-align: left !important;
}

/* Base bubble styling */
.t665__question,
.t665__answer{
  border-radius: 20px !important;
}

/* "You" bubble */
.t665__question{
  border: 2.5px solid rgba(73,74,81,1) !important;
}

/* "Elena" bubble */
.t665__answer{
  border: 2.5px solid rgba(17,117,130,1) !important;
}

/* Tail outline — You */
.t665__question .t665__tail svg path{
  stroke: rgba(73,74,81,1);
  stroke-width: 2.5px;
}

/* Tail outline — Elena */
.t665__answer .t665__tail svg path{
  stroke: rgba(17,117,130,1);
  stroke-width: 2.5px;
  fill: #14182a;
}

.t665__answer{
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

