{% extends "base.html" %} {% block title %}Chat — AI Agentic Hub{% endblock %} {% block extra_style %} #chat-box { height: 500px; overflow-y: auto; background: #0f1117; border: 1px solid #2a2b35; border-radius: 8px; padding: 16px; margin-bottom: 12px; } .msg { margin-bottom: 12px; } .msg-user { text-align: right; } .msg-user .bubble { background: #7c5cfc; display: inline-block; padding: 8px 14px; border-radius: 12px 12px 0 12px; max-width: 70%; } .msg-assistant .bubble { background: #1a1b23; border: 1px solid #2a2b35; display: inline-block; padding: 8px 14px; border-radius: 12px 12px 12px 0; max-width: 70%; white-space: pre-wrap; } .msg-tool { font-size: 12px; color: #8b8d98; padding: 4px 0; } .msg-tool .tool-name { color: #e5c07b; } #input-row { display: flex; gap: 8px; } #input-row input { flex: 1; } .typing-indicator { color: #8b8d98; font-size: 12px; padding: 4px 0; } {% endblock %} {% block content %}