/* AE.QA.Agentic — complements public/theme.json; keeps header logo + initiative readable */

/* Override Chainlit's max-h-16 on the welcome logo so the AQUA text is visible */
img#logo {
  max-height: 8rem !important;
}

/* Slightly denser, calmer chat column */
main [class*="message"] {
  line-height: 1.55;
}

/* Initiative / welcome emphasis in chainlit.md (blockquotes) */
.prose blockquote,
[class*="markdown"] blockquote {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid hsl(var(--primary));
  background: hsl(var(--accent) / 0.45);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Code in messages */
.prose code,
[class*="markdown"] code {
  font-size: 0.9em;
}

/* Composer: subtle focus ring aligned with brand */
textarea:focus-visible,
[contenteditable="true"]:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 1px;
}
