/* Custom styling for Qwen3-VL Policy Expert RAG interface */

/* Wider message content area */
.cl-message-content {
  max-width: 100% !important;
}

/* Better code block styling */
pre {
  border-radius: 8px !important;
  padding: 12px !important;
}

/* Source citations - slightly muted to distinguish from main answer */
.cl-message:last-child .cl-message-content {
  font-size: 0.95em;
}

/* Thinking step styling - collapsible section */
.cl-step {
  border-left: 3px solid var(--primary) !important;
  margin-left: 8px !important;
}

/* Starter buttons - more visible */
.cl-starter {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: border-color 0.2s ease !important;
}
.cl-starter:hover {
  border-color: rgba(255, 255, 255, 0.4) !important;
}
