:root{--chatbot-primary:var(--accent,#6366e8);--chatbot-secondary:var(--accent-hover,#5054d4);--chatbot-background:var(--surface,#fff);--chatbot-text:var(--fg,#28231f);--chatbot-border:var(--border,#e8e2d3);--chatbot-user-message-bg:var(--accent,#6366e8);--chatbot-bot-message-bg:var(--surface-sunken,#f5f2ea);--chatbot-user-message-text:#fff;--chatbot-bot-message-text:var(--fg,#28231f);--chatbot-shadow:0 12px 40px rgba(0,0,0,.14),0 4px 12px rgba(0,0,0,.08);--chatbot-radius:14px}#realm-chatbot-container{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;pointer-events:none;position:fixed;z-index:999999}#realm-chatbot-container>.chatbot-fab-wrapper,#realm-chatbot-container>.chatbot-window{pointer-events:auto}.chatbot-position-bottom-right{bottom:20px;right:20px}.chatbot-position-bottom-left{bottom:20px;left:20px}.chatbot-position-top-right{right:20px;top:20px}.chatbot-position-top-left{left:20px;top:20px}.chatbot-position-bottom-right .chatbot-window{bottom:20px;right:20px}.chatbot-position-bottom-left .chatbot-window{bottom:20px;left:20px}.chatbot-position-top-right .chatbot-window{right:20px;top:20px}.chatbot-position-top-left .chatbot-window{left:20px;top:20px}.chatbot-fab-wrapper{display:inline-block;position:relative}.chatbot-fab-tooltip{background:var(--chatbot-text);border-radius:8px;color:var(--chatbot-background);font-size:12px;font-weight:500;opacity:0;padding:6px 10px;pointer-events:none;position:absolute;right:calc(100% + 10px);top:50%;transform:translateY(-50%);transition:opacity .2s;white-space:nowrap}.chatbot-fab-wrapper:hover .chatbot-fab-tooltip{opacity:1}.chatbot-fab-badge{background:#ef4444;border:2px solid #fff;border-radius:50%;font-size:10px;font-weight:700;height:20px;position:absolute;right:-4px;top:-4px;width:20px}.chatbot-fab-badge,.chatbot-floating-button{align-items:center;color:#fff;display:flex;justify-content:center}.chatbot-floating-button{background:var(--chatbot-primary);border:none;border-radius:50%;box-shadow:var(--chatbot-shadow);cursor:pointer;height:58px;position:relative;transition:transform .2s,box-shadow .2s;width:58px}.chatbot-floating-button:hover{box-shadow:0 18px 50px rgba(0,0,0,.18);transform:scale(1.06) translateY(-2px)}.chatbot-floating-button:active{transform:scale(.96)}.chatbot-window{animation:slideUp .3s ease-out;background:var(--chatbot-background);border-radius:var(--chatbot-radius);box-shadow:var(--chatbot-shadow);display:flex;flex-direction:column;height:600px;overflow:hidden;position:fixed;transition:width .3s,height .3s;width:400px;z-index:999999}.chatbot-window.minimized .chatbot-input-container,.chatbot-window.minimized .chatbot-message-list,.chatbot-window.minimized .chatbot-typing-indicator{display:none!important}.chatbot-window.maximized{border-radius:0}.resize-handle{position:absolute;z-index:10}.resize-n{top:0}.resize-n,.resize-s{cursor:ns-resize;height:5px;left:0;right:0}.resize-s{bottom:0}.resize-e{right:0}.resize-e,.resize-w{bottom:0;cursor:ew-resize;top:0;width:5px}.resize-w{left:0}.resize-ne{cursor:nesw-resize;right:0}.resize-ne,.resize-nw{height:10px;top:0;width:10px}.resize-nw{cursor:nwse-resize;left:0}.resize-se{cursor:nwse-resize;right:0}.resize-se,.resize-sw{bottom:0;height:10px;width:10px}.resize-sw{cursor:nesw-resize;left:0}@keyframes slideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.chatbot-header{align-items:center;background:var(--chatbot-primary);color:#fff;display:flex;justify-content:space-between;padding:16px 20px;user-select:none}.chatbot-header-title{align-items:center;display:flex;font-weight:600;gap:8px}.chatbot-header-actions{align-items:center;display:flex;gap:4px}.chatbot-status-indicator{background:#ef4444;border-radius:50%;height:8px;width:8px}.chatbot-status-indicator.connected{background:#10b981}.chatbot-close-button,.chatbot-maximize-button,.chatbot-minimize-button,.chatbot-newchat-button{align-items:center;background:none;border:none;border-radius:4px;color:#fff;cursor:pointer;display:flex;justify-content:center;padding:6px;transition:background .2s}.chatbot-maximize-button:hover,.chatbot-minimize-button:hover,.chatbot-newchat-button:hover{background:hsla(0,0%,100%,.1)}.chatbot-close-button:hover{background:rgba(239,68,68,.2)}.chatbot-message-list{display:flex;flex:1;flex-direction:column;gap:16px;overflow-y:auto;padding:20px}.chatbot-message-list::-webkit-scrollbar{width:6px}.chatbot-message-list::-webkit-scrollbar-thumb{background:var(--chatbot-border);border-radius:3px}.chatbot-message{animation:messageAppear .3s ease-out;display:flex;gap:8px}@keyframes messageAppear{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.chatbot-message-user{flex-direction:row-reverse}.chatbot-message-avatar{align-items:center;border-radius:50%;display:flex;flex-shrink:0;font-size:16px;height:32px;justify-content:center;width:32px}.chatbot-message-content{display:flex;flex-direction:column;gap:4px;max-width:70%}.chatbot-message-user .chatbot-message-content{align-items:flex-end}.chatbot-message-bubble{word-wrap:break-word;border-radius:12px;padding:10px 14px}.chatbot-message-user .chatbot-message-bubble{background:var(--chatbot-user-message-bg);border-bottom-right-radius:4px;color:var(--chatbot-user-message-text)}.chatbot-message-bot .chatbot-message-bubble{background:var(--chatbot-bot-message-bg);border-bottom-left-radius:4px;color:var(--chatbot-bot-message-text)}.chatbot-message-timestamp{color:#9ca3af;font-size:11px;padding:0 4px}.chatbot-message-status{font-size:12px}.chatbot-message-status-sending{color:#9ca3af}.chatbot-message-status-sent{color:#10b981}.chatbot-message-status-failed{color:#ef4444}.chatbot-typing-indicator{align-items:center;display:flex;gap:4px;padding:0 20px 10px}.chatbot-typing-indicator span{animation:typing 1.4s infinite;background:var(--chatbot-border);border-radius:50%;height:8px;width:8px}.chatbot-typing-indicator span:nth-child(2){animation-delay:.2s}.chatbot-typing-indicator span:nth-child(3){animation-delay:.4s}@keyframes typing{0%,60%,to{opacity:.5;transform:translateY(0)}30%{opacity:1;transform:translateY(-10px)}}.chatbot-input-container{align-items:flex-end;border-top:1px solid var(--chatbot-border);display:flex;gap:8px;padding:16px 20px}.chatbot-input{border:1px solid var(--chatbot-border);border-radius:20px;flex:1;font-family:inherit;font-size:14px;max-height:120px;outline:none;padding:10px 16px;resize:none;transition:border-color .2s}.chatbot-input:focus{border-color:var(--chatbot-primary)}.chatbot-send-button{align-items:center;background:var(--chatbot-primary);border:none;border-radius:50%;color:#fff;cursor:pointer;display:flex;flex-shrink:0;height:40px;justify-content:center;transition:background .2s,transform .1s;width:40px}.chatbot-send-button:hover:not(:disabled){background:var(--chatbot-secondary)}.chatbot-send-button:active:not(:disabled){transform:scale(.95)}.chatbot-send-button:disabled{cursor:not-allowed;opacity:.5}@media (max-width:480px){.chatbot-window{border-radius:0;height:100vh;position:fixed;width:100vw}.chatbot-position-bottom-left .chatbot-window,.chatbot-position-bottom-right .chatbot-window,.chatbot-position-top-left .chatbot-window,.chatbot-position-top-right .chatbot-window,.chatbot-window{bottom:0;left:0;right:0;top:0}.chatbot-floating-button{height:56px;width:56px}}.chatbot-suggestions{background:var(--chatbot-suggestions-bg,#fafafa);border-top:1px solid var(--chatbot-border,#e5e7eb);display:flex;flex-wrap:wrap;gap:6px;padding:10px 12px 4px}.chatbot-suggestion-chip{appearance:none;background:var(--chatbot-bg,#fff);border:1px solid var(--chatbot-border,#e5e7eb);border-radius:9999px;color:var(--chatbot-text,#1f2937);cursor:pointer;font:500 12px/1.3 var(--chatbot-font,system-ui,-apple-system,sans-serif);max-width:100%;overflow:hidden;padding:6px 12px;text-overflow:ellipsis;transition:background .12s ease,border-color .12s ease,transform .06s ease;white-space:nowrap}.chatbot-suggestion-chip:hover{background:var(--chatbot-primary-tint,color-mix(in srgb,var(--chatbot-primary,#4f46e5) 10%,transparent));border-color:var(--chatbot-primary,#4f46e5);color:var(--chatbot-primary,#4f46e5)}.chatbot-suggestion-chip:active{transform:translateY(1px)}.chatbot-suggestion-chip:focus-visible{outline:2px solid var(--chatbot-primary,#4f46e5);outline-offset:2px}.chatbot-window.minimized .chatbot-suggestions{display:none!important}@media (max-width:768px) and (min-width:481px){.chatbot-window{height:500px;width:360px}}.chatbot-attach-button,.chatbot-emoji-button{align-items:center;background:none;border:none;border-radius:50%;color:var(--chatbot-text,#4b5563);cursor:pointer;display:flex;flex-shrink:0;font-size:18px;height:36px;justify-content:center;line-height:1;opacity:.7;transition:background .15s ease,opacity .15s ease;width:36px}.chatbot-attach-button:hover,.chatbot-emoji-button:hover{background:var(--chatbot-bot-message-bg,#f3f4f6);opacity:1}.chatbot-emoji-panel{background:var(--chatbot-background,#fff);border:1px solid var(--chatbot-border,#e5e7eb);border-radius:12px;bottom:64px;box-shadow:var(--chatbot-shadow,0 8px 24px rgba(0,0,0,.12));display:flex;flex-wrap:wrap;gap:2px;left:12px;max-width:calc(100% - 24px);padding:8px;position:absolute;width:224px;z-index:10}.chatbot-emoji-option{background:none;border:none;border-radius:8px;cursor:pointer;font-size:18px;height:32px;line-height:1;transition:background .12s ease;width:32px}.chatbot-emoji-option:hover{background:var(--chatbot-bot-message-bg,#f3f4f6)}.chatbot-input-container{position:relative}.chatbot-surface{color:var(--chatbot-text,#1f2937);font-size:13px;margin-top:8px}.chatbot-surface,.chatbot-surface-stack{display:flex;flex-direction:column;gap:8px}.chatbot-surface-row{display:flex;flex-direction:row;flex-wrap:wrap;gap:8px}.chatbot-surface-card{background:var(--chatbot-background,#fff);border:1px solid var(--chatbot-border,#e5e7eb);border-radius:10px;display:flex;flex-direction:column;gap:6px;padding:12px}.chatbot-surface-card.elevated{box-shadow:var(--chatbot-shadow,0 4px 12px rgba(0,0,0,.08))}.chatbot-surface-card-title{font-weight:600}.chatbot-surface-card-subtitle{color:#6b7280;font-size:12px}.chatbot-surface-heading{font-size:15px;font-weight:600;margin:0}.chatbot-surface-text{line-height:1.45;margin:0}.chatbot-surface-text.tone-muted{color:#6b7280}.chatbot-surface-badge{background:var(--chatbot-bot-message-bg,#f3f4f6);border-radius:9999px;color:var(--chatbot-text,#374151);display:inline-block;font-size:11px;font-weight:600;padding:2px 8px}.chatbot-surface-badge.color-success{background:#dcfce7;color:#166534}.chatbot-surface-badge.color-danger{background:#fee2e2;color:#991b1b}.chatbot-surface-badge.color-warning{background:#fef3c7;color:#92400e}.chatbot-surface-badge.color-info{background:#dbeafe;color:#1e40af}.chatbot-surface-metric{border:1px solid var(--chatbot-border,#e5e7eb);border-radius:10px;display:flex;flex-direction:column;gap:2px;min-width:120px;padding:10px 12px}.chatbot-surface-metric-label{color:#6b7280;font-size:11px}.chatbot-surface-metric-value{font-size:18px;font-weight:700}.chatbot-surface-metric-delta{font-size:12px;font-weight:600}.chatbot-surface-metric-delta.dir-up{color:#16a34a}.chatbot-surface-metric-delta.dir-down{color:#dc2626}.chatbot-surface-image img{border-radius:8px;display:block;max-width:100%}.chatbot-surface-image figcaption{color:#6b7280;font-size:11px;margin-top:4px}.chatbot-surface-divider{background:var(--chatbot-border,#e5e7eb);border:none;height:1px}.chatbot-surface-progress-track{background:var(--chatbot-bot-message-bg,#f3f4f6);border-radius:9999px;height:8px;overflow:hidden}.chatbot-surface-progress-bar{background:var(--chatbot-primary,#4f46e5);height:100%}.chatbot-surface-progress-label{font-size:12px;margin-bottom:4px}.chatbot-surface-callout{background:var(--chatbot-bot-message-bg,#f3f4f6);border-left:3px solid var(--chatbot-primary,#4f46e5);border-radius:0 8px 8px 0;padding:8px 12px}.chatbot-surface-callout.tone-success{border-left-color:#16a34a}.chatbot-surface-callout.tone-danger{border-left-color:#dc2626}.chatbot-surface-callout.tone-warning{border-left-color:#d97706}.chatbot-surface-callout-title{font-weight:600}.chatbot-surface-callout-body{color:#4b5563;font-size:12px;margin-top:2px}.chatbot-surface-citation{background:var(--chatbot-background,#fff);border:1px solid var(--chatbot-border,#e5e7eb);border-radius:8px;padding:8px 10px}.chatbot-surface-citation-name{font-size:12px;font-weight:600}.chatbot-surface-citation-excerpt{color:#4b5563;font-size:12px;margin-top:4px}.chatbot-surface-citation-confidence{color:#6b7280;font-size:11px;margin-top:4px}.chatbot-surface-list{display:flex;flex-direction:column;gap:2px;margin:0;padding-left:20px}.chatbot-surface-table-scroll{max-width:100%;overflow-x:auto}.chatbot-surface-table{border-collapse:collapse;font-size:12px;width:100%}.chatbot-surface-table td,.chatbot-surface-table th{border:1px solid var(--chatbot-border,#e5e7eb);padding:6px 8px;text-align:left;white-space:nowrap}.chatbot-surface-table th{background:var(--chatbot-bot-message-bg,#f3f4f6);font-weight:600}.chatbot-surface-table-empty{color:#9ca3af;text-align:center}.chatbot-surface-chart-title{font-weight:600;margin-bottom:4px}.chatbot-surface-field{display:flex;flex-direction:column;gap:4px;margin-bottom:8px}.chatbot-surface-field-label{font-size:12px;font-weight:500}.chatbot-surface-control{border:1px solid var(--chatbot-border,#e5e7eb);border-radius:8px;box-sizing:border-box;font-family:inherit;font-size:13px;outline:none;padding:8px 10px;width:100%}.chatbot-surface-control:focus{border-color:var(--chatbot-primary,#4f46e5)}.chatbot-surface-button{appearance:none;background:var(--chatbot-primary,#4f46e5);border:1px solid var(--chatbot-primary,#4f46e5);border-radius:8px;color:#fff;cursor:pointer;font:600 13px/1.2 inherit;padding:8px 14px;transition:background .12s ease,opacity .12s ease}.chatbot-surface-button:hover:not(:disabled){background:var(--chatbot-secondary,#4338ca)}.chatbot-surface-button:disabled{cursor:not-allowed;opacity:.5}.chatbot-surface-button.variant-ghost,.chatbot-surface-button.variant-secondary{background:transparent;color:var(--chatbot-primary,#4f46e5)}.chatbot-surface-button.variant-danger{background:#dc2626;border-color:#dc2626;color:#fff}.chatbot-surface-unsupported{color:#9ca3af;font-size:12px;font-style:italic}