.chat-message{display:flex;flex-direction:column;margin-bottom:4px;animation:fadeIn .2s ease-out}@keyframes fadeIn{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}.chat-message.user{align-items:flex-end}.chat-message.assistant{align-items:flex-start}.message-content{max-width:65%;display:flex;flex-direction:column}.message-bubble{padding:7px 12px 8px;border-radius:12px;line-height:1.4;word-wrap:break-word;font-size:15px;position:relative}.chat-message.user .message-bubble{background:var(--msg-user-bg);color:var(--msg-user-text);border-bottom-right-radius:4px}.chat-message.assistant .message-bubble{background:var(--msg-assistant-bg);color:var(--msg-assistant-text);border-bottom-left-radius:4px}.message-bubble strong{font-weight:600}.message-bubble em{font-style:italic}.message-time{font-size:11px;color:var(--text-secondary);padding:2px 4px 0;display:flex}.chat-message.user .message-time{justify-content:flex-end}.chat-message.assistant .message-time{justify-content:flex-start}.message-sources{background:var(--msg-assistant-bg);padding:8px 12px;border-radius:8px;border:1px solid var(--border);font-size:13px;margin-top:4px}.sources-title{font-weight:600;margin-bottom:6px;color:var(--text-primary);font-size:13px}@media (max-width: 768px){.message-content{max-width:85%}.message-bubble{font-size:14px}}.source-card{background:#f8fafc;border:1px solid #e2e8f0;border-radius:8px;padding:12px 16px;margin-top:8px}.source-card__header{display:flex;align-items:center;gap:8px;margin-bottom:8px}.source-card__icon{font-size:1.25rem}.source-card__filename{font-weight:500;color:#1e293b;word-break:break-all}.source-card__meta{display:flex;gap:12px;font-size:.8rem;color:#64748b;margin-bottom:8px}.source-card__similarity{color:#10b981}.source-card__excerpt{font-size:.85rem;color:#475569;line-height:1.5;margin-bottom:8px;padding:8px;background:#fff;border-radius:4px}.source-card__link{display:inline-block;padding:6px 12px;background:#4f46e5;color:#fff;border-radius:6px;text-decoration:none;font-size:.85rem;transition:background .2s}.source-card__link:hover{background:#4338ca}.source-card--file{background:#f8fafc}.source-card__block{color:#64748b;font-size:.8rem;margin-bottom:8px}.source-card__address{color:#64748b;font-size:.85rem;margin-bottom:8px}.source-card--property{background:#eff6ff;border-color:#bfdbfe}.source-card__title{font-weight:500;color:#1e40af;margin-bottom:4px}.source-card__price{color:#16a34a;font-weight:500}.chat-input{display:flex;gap:8px;padding:8px 10%;background:var(--surface);align-items:flex-end}.input-field{flex:1;padding:10px 14px;border:none;border-radius:20px;font-size:15px;font-family:inherit;resize:none;min-height:42px;max-height:120px;background:var(--input-bg);color:var(--text-primary);transition:box-shadow .2s}.input-field:focus{outline:none;box-shadow:0 0 0 2px var(--primary-color)}.input-field:disabled{opacity:.6;cursor:not-allowed}.input-field::placeholder{color:var(--text-secondary)}.send-button{width:42px;height:42px;border:none;border-radius:50%;background:var(--primary-color);color:#fff;font-size:18px;cursor:pointer;transition:all .2s;flex-shrink:0;display:flex;align-items:center;justify-content:center}.send-button:hover:not(:disabled){background:var(--primary-hover);transform:scale(1.05)}.send-button:disabled{background:var(--secondary-color);cursor:not-allowed;opacity:.5}@media (max-width: 768px){.chat-input{padding:8px 12px;gap:6px}.input-field{font-size:14px;padding:9px 12px;min-height:38px}.send-button{width:38px;height:38px}}.chat-window{display:flex;flex-direction:column;height:100vh;max-width:100%;margin:0 auto;background:var(--background)}.chat-header{display:flex;justify-content:space-between;align-items:center;padding:10px 16px;background:var(--header-bg);color:var(--header-text);box-shadow:var(--shadow);min-height:56px}.header-left{display:flex;align-items:center;gap:12px}.header-logo{width:30%;object-fit:cover}.header-info{display:flex;flex-direction:column}.header-title{font-size:16px;font-weight:600;margin:0;line-height:1.2}.header-subtitle{font-size:13px;opacity:.7;margin:0;line-height:1.3}.header-actions{display:flex;align-items:center;gap:4px}.header-btn{width:36px;height:36px;border:none;border-radius:50%;background:transparent;color:var(--header-text);font-size:18px;cursor:pointer;transition:background .2s;display:flex;align-items:center;justify-content:center}.header-btn:hover{background:rgba(255,255,255,.15)}.theme-icon{width:20px;height:20px}.chat-messages{flex:1;overflow-y:auto;padding:8px 10%;background:var(--chat-bg)}.loading-indicator{display:flex;justify-content:flex-start;padding:8px 0}.loading-dots{display:flex;gap:4px;background:var(--msg-assistant-bg);padding:12px 16px;border-radius:12px}.loading-dots span{width:8px;height:8px;border-radius:50%;background:var(--text-secondary);animation:bounce 1.4s infinite ease-in-out both}.loading-dots span:nth-child(1){animation-delay:-.32s}.loading-dots span:nth-child(2){animation-delay:-.16s}@keyframes bounce{0%,80%,to{transform:scale(0)}40%{transform:scale(1)}}@media (max-width: 768px){.chat-messages{padding:8px 4%}.chat-header{padding:8px 12px}.header-title{font-size:15px}.header-logo{width:36px;height:36px}}:root,[data-theme=light]{--primary-color: #2AABEE;--primary-hover: #229ED9;--secondary-color: #64748b;--background: #ffffff;--surface: #e6ebee;--chat-bg: #8EAFC2;--border: #e2e8f0;--text-primary: #000000;--text-secondary: #708499;--success: #10b981;--error: #ef4444;--shadow: 0 1px 2px 0 rgb(0 0 0 / .08);--shadow-lg: 0 4px 12px rgb(0 0 0 / .08);--msg-user-bg: #EFFDDE;--msg-user-text: #000000;--msg-assistant-bg: #ffffff;--msg-assistant-text: #000000;--input-bg: #ffffff;--header-bg: #517DA2;--header-text: #ffffff}[data-theme=dark]{--primary-color: #2AABEE;--primary-hover: #229ED9;--secondary-color: #8696a7;--background: #17212B;--surface: #0E1621;--chat-bg: #0E1621;--border: #293a4c;--text-primary: #f5f5f5;--text-secondary: #8696a7;--success: #10b981;--error: #ef4444;--shadow: 0 1px 2px 0 rgb(0 0 0 / .3);--shadow-lg: 0 4px 12px rgb(0 0 0 / .3);--msg-user-bg: #2B5278;--msg-user-text: #f5f5f5;--msg-assistant-bg: #182533;--msg-assistant-text: #f5f5f5;--input-bg: #17212B;--header-bg: #17212B;--header-text: #f5f5f5}*{margin:0;padding:0;box-sizing:border-box}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:var(--surface);color:var(--text-primary)}#root{min-height:100vh;display:flex;flex-direction:column}::-webkit-scrollbar{width:6px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:rgba(0,0,0,.2);border-radius:3px}::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.3)}
