/* Burbujas básicas */
.aelara-msg{
  max-width: 78%;
  margin: 6px 10px;
  padding: 10px 14px;
  border-radius: 14px;
  line-height: 1.35;
  word-wrap: break-word;
  font-size: 0.95rem;
}
.aelara-msg.me{
  align-self: flex-end;
  background: #e6f0ff;
  color: #0b1f44;
  box-shadow: 0 4px 10px rgba(100,160,255,.25);
}
.aelara-msg.bot{
  align-self: flex-start;
  background: rgba(15,23,42,.8);
  color: #e6f1ff;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

/* Asegura que el hilo crezca y se pegue abajo */
#thread, main.thread, .thread, [data-chat-list]{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 52vh; /* no invade la barra superior */
  padding-bottom: 72px; /* espacio para la barra de entrada */
  box-sizing: border-box;
  overflow-y: auto;
  scroll-behavior: smooth;
}
