/* =========================
   FULL CANVAS TEXT RENDERING
   Direct text output (no chat bubbles)
========================= */

/* Output container base styling */
[data-room-output] {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c2c2c;
  white-space: pre-wrap;
  word-wrap: break-word;
  width: 100%;
}

/* Direct text paragraphs */
[data-room-output] p {
  margin-bottom: 1.5rem;
  color: #2c2c2c;
}

[data-room-output] .user-text {
  font-weight: 500;
  color: #1f2328;
  margin-bottom: 1rem;
}

[data-room-output] .assistant-text {
  color: #2c2c2c;
  margin-bottom: 2rem;
}
