:root{--brand-600: #7c3aed;--brand-700: #6d28d9;--neutral-50: #f8fafc;--neutral-100: #f1f5f9;--neutral-200: #e2e8f0;--neutral-300: #cbd5e1;--neutral-400: #94a3b8;--neutral-500: #64748b;--neutral-600: #475569;--neutral-700: #334155;--neutral-800: #1e293b;--error-500: #ef4444;--font-family-base: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--font-weight-medium: 500;--radius-md: .5rem;--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);--shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1)}*{box-sizing:border-box;margin:0;padding:0}body{font-family:var(--font-family-base);background:linear-gradient(135deg,#f5f7fe,#eef2fb);height:100vh;height:100dvh;overflow:hidden;display:flex;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-overflow-scrolling:touch;position:fixed;top:0;left:0;right:0;bottom:0}#root{display:flex;flex:1;width:100%;height:100%}.sidebar{width:260px;background:var(--neutral-50);color:var(--neutral-700);display:flex;flex-direction:column;position:relative;border-right:1px solid var(--neutral-200)}.sidebar-header{padding:16px}.new-chat-btn{width:100%;background:#fff;border:1px solid var(--neutral-200);color:var(--neutral-700);padding:10px 16px;border-radius:6px;cursor:pointer;font-size:14px;display:flex;align-items:center;gap:8px;transition:all .2s}.new-chat-btn:hover{background:var(--neutral-100);border-color:var(--neutral-300)}.chat-list{flex:1;overflow-y:auto;padding:8px 8px 0}.chat-item{padding:12px 16px;margin-bottom:4px;border-radius:6px;cursor:pointer;font-size:14px;line-height:1.3;transition:background .2s;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--neutral-700)}.chat-item:hover{background:var(--neutral-100)}.chat-item.active{background:var(--neutral-200);color:var(--neutral-800)}.chat-item-delete{position:absolute;right:8px;top:50%;transform:translateY(-50%);background:transparent;border:none;color:var(--neutral-400);cursor:pointer;opacity:0;transition:opacity .2s;font-size:12px;padding:4px}.chat-item:hover .chat-item-delete{opacity:1}.chat-item-delete:hover{color:var(--error-500)}.sidebar-footer{padding:16px;font-size:12px;color:var(--neutral-500)}.footer-links{display:flex;flex-direction:column;gap:8px;margin-bottom:12px}.footer-links a{color:var(--neutral-500);text-decoration:none;transition:color .2s}.footer-links a:hover{color:var(--neutral-700)}.footer-separator{margin:0 6px;color:var(--neutral-400)}.footer-row{display:flex;flex-wrap:wrap;align-items:center;gap:4px;margin-bottom:8px}.footer-row.with-language{justify-content:space-between}.language-selector{position:relative}.language-button{background:transparent;border:1px solid var(--neutral-400);border-radius:4px;padding:4px 8px;font-size:11px;color:var(--neutral-600);cursor:pointer;display:flex;align-items:center;gap:4px;transition:all .2s ease;min-width:50px;justify-content:center}.language-button:hover{background:var(--neutral-100);border-color:var(--neutral-500)}.language-dropdown{position:absolute;bottom:100%;right:0;background:var(--neutral-50);border:1px solid var(--neutral-300);border-radius:6px;box-shadow:0 4px 12px #00000026;min-width:120px;z-index:1000;display:none;margin-bottom:4px}.language-dropdown.show{display:block}.language-option{padding:8px 12px;cursor:pointer;font-size:12px;color:var(--neutral-700);transition:background .2s ease;border-bottom:1px solid var(--neutral-200)}.language-option:last-child{border-bottom:none}.language-option:hover{background:var(--neutral-100)}.language-option.active{background:var(--brand-600);color:#fff}.main-content{flex:1;display:flex;flex-direction:column;position:relative}.chat-header{background:#fff;border-bottom:1px solid #e5e5e5;padding:16px 24px;display:flex;justify-content:space-between;align-items:center}.chat-header h1{color:#333;font-size:20px;font-weight:600;margin:0;display:flex;align-items:center}.chat-container{flex:1;overflow-y:auto;padding:24px;display:flex;flex-direction:column;background:#fff}.chat-messages{max-width:800px;margin:0 auto;width:100%}.message{margin-bottom:24px;display:flex;gap:16px}.message.user{justify-content:flex-end}.message.bot{justify-content:flex-start}.message-content{max-width:70%;min-width:0}.message-bubble{font-size:15px;line-height:1.6;word-wrap:break-word;padding:16px 0}.message.user .message-bubble{background:#f3f4f6;color:#111827;border-radius:12px;padding:16px;box-shadow:0 1px 2px #0000000d}.message.bot .message-bubble{background:transparent;color:#333;padding:16px 0}.message.bot .message-bubble h1,.message.bot .message-bubble h2,.message.bot .message-bubble h3,.message.bot .message-bubble h4,.message.bot .message-bubble h5,.message.bot .message-bubble h6{color:#1f2937;margin:20px 0 12px;font-weight:600;line-height:1.3}.message.bot .message-bubble h1{font-size:1.5em;border-bottom:2px solid #e5e7eb;padding-bottom:8px}.message.bot .message-bubble h2{font-size:1.3em;color:#374151}.message.bot .message-bubble h3{font-size:1.1em;color:#4b5563}.message.bot .message-bubble p{margin:12px 0;line-height:1.6;color:#374151}.message.bot .message-bubble p:first-child{margin-top:0}.message.bot .message-bubble p:last-child{margin-bottom:0}.message.bot .message-bubble ul,.message.bot .message-bubble ol{margin:16px 0;padding-left:24px}.message.bot .message-bubble li{margin:8px 0;padding-left:8px;line-height:1.5}.message.bot .message-bubble ul li{list-style-type:disc}.message.bot .message-bubble ol li{list-style-type:decimal}.message.bot .message-bubble ul ul li{list-style-type:circle}.message.bot .message-bubble ul ul ul li{list-style-type:square}.message.bot .message-bubble strong{font-weight:600;color:#1f2937}.message.bot .message-bubble em{font-style:italic;color:#4b5563}.message.bot .message-bubble a:not(.link-icon-only){color:#2563eb;text-decoration:none;font-weight:500}.message.bot .message-bubble a:not(.link-icon-only):hover{color:#1d4ed8;text-decoration:underline}.loading-with-spinner{display:flex;align-items:center;gap:8px;color:#666;font-style:italic;padding:12px 16px;background:#f8f9fa;border-radius:8px;margin:8px 0}.modern-spinner{display:inline-block;width:16px;height:16px;border:2px solid #e3e3e3;border-radius:50%;border-top-color:#64748b;animation:spin .8s ease-in-out infinite}@keyframes spin{to{transform:rotate(360deg)}}.input-area{background:#fff;border-top:1px solid #e5e5e5;padding:16px 24px;padding-bottom:calc(16px + env(safe-area-inset-bottom));position:sticky;bottom:0;z-index:100}.input-container{max-width:800px;margin:0 auto;position:relative}.input-field{width:100%;border:1px solid #d9d9e3;border-radius:12px;padding:12px 48px 12px 16px;font-size:15px;resize:none;min-height:48px;max-height:200px;font-family:inherit;outline:none;transition:border-color .2s}.input-field:focus{border-color:#64748b;box-shadow:0 0 0 2px #64748b1a}.send-button{position:absolute;right:8px;top:50%;transform:translateY(-50%);background:transparent;border:none;width:32px;height:32px;border-radius:8px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;padding:0}.send-button-inner{width:24px;height:24px;background:#000;border-radius:50%;display:flex;align-items:center;justify-content:center}.send-button-inner.cancel{background:#6b7280}.send-button-inner svg{width:12px;height:12px;stroke:#fff;fill:none;stroke-width:2.5;stroke-linecap:round}.send-button-inner .cancel-square{width:8px;height:8px;background:#fff;border-radius:2px}.empty-state{display:flex;flex-direction:column;align-items:center;justify-content:center;flex:1;text-align:center;padding:24px}.empty-state h2{color:#333;font-size:24px;margin-bottom:8px}.empty-state p{color:#666;font-size:16px;margin-bottom:32px}.suggestion-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:16px;max-width:600px;margin:0 auto}.suggestion-card{background:#fff;border:1px solid #e9ecef;border-radius:12px;padding:20px;cursor:pointer;transition:all .2s ease;box-shadow:0 2px 4px #0000000d;text-align:left;font-family:inherit}.suggestion-card:hover{border-color:#64748b;box-shadow:0 4px 12px #64748b26;transform:translateY(-2px)}.suggestion-card h3{color:#333;font-size:15px;font-weight:600;margin:0 0 8px;line-height:1.4}.suggestion-card p{color:#666;font-size:13px;margin:0;line-height:1.4}.suggestion-card .icon{width:24px;height:24px;margin-bottom:12px;color:#64748b;display:flex;align-items:center;justify-content:center}.suggestion-card .icon svg{width:24px;height:24px;stroke:currentColor;fill:none;stroke-width:1.5}@supports (height: 100dvh){body{height:100dvh}}@supports (-webkit-touch-callout: none){body{height:-webkit-fill-available}}@media(max-width:768px){.sidebar{width:280px;position:fixed;left:-280px;top:0;height:100vh;height:100dvh;z-index:1000;transition:left .3s ease}.input-area{padding:12px 16px;padding-bottom:calc(12px + env(safe-area-inset-bottom))}.input-container{max-width:none}.input-field{font-size:16px}.sidebar.open{left:0}.main-content{width:100%}.mobile-menu-btn{display:block;position:fixed;top:16px;left:16px;z-index:1001;background:var(--neutral-50);color:var(--neutral-700);border:1px solid var(--neutral-200);width:40px;height:40px;border-radius:6px;cursor:pointer;box-shadow:var(--shadow-md)}.chat-header{padding:12px 16px}.chat-header h1{font-size:18px}.overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#00000080;z-index:999;display:none}.overlay.active{display:block}}@media(min-width:769px){.mobile-menu-btn,.overlay{display:none}}
