*{margin:0;padding:0;box-sizing:border-box}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;background:#fbf7f4;min-height:100vh}a{color:#9b87ab;text-decoration:none;font-weight:500}a:hover{text-decoration:underline}strong{font-weight:600}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:#c8b8d6;border-radius:4px}::-webkit-scrollbar-thumb:hover{background:#9b87ab}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes pulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.9)}}#app{display:flex;height:100vh}#sidebar{width:260px;background:linear-gradient(180deg,#b8a1c6,#9b87ab);border-right:1px solid rgba(255,255,255,.1);display:flex;flex-direction:column;box-shadow:2px 0 20px #9b87ab4d}#sidebar #sidebar-header{padding:24px 20px;border-bottom:1px solid rgba(255,255,255,.15)}#sidebar #sidebar-header h1{color:#fff;font-size:24px;font-weight:700;margin-bottom:4px;text-shadow:0 2px 4px rgba(0,0,0,.1)}#sidebar #sidebar-header p{color:#ffffffd9;font-size:13px}#sidebar #conversations{flex:1;overflow-y:auto;padding:12px}#sidebar #conversations .conversation-item{background:#ffffff26;border:1px solid rgba(255,255,255,.2);border-radius:10px;padding:14px;margin-bottom:8px;cursor:pointer;transition:all .2s ease;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}#sidebar #conversations .conversation-item:hover{background:#ffffff40;transform:translate(4px)}#sidebar #conversations .conversation-item .conversation-label{font-size:10px;text-transform:uppercase;font-weight:700;letter-spacing:.5px;margin-bottom:6px;color:#ffffffb3}#sidebar #conversations .conversation-item .conversation-title{font-size:14px;font-weight:500;line-height:1.4;color:#fff}#sidebar #conversations .conversation-item.active{background:#fff;border-color:#fff;box-shadow:0 4px 12px #00000026}#sidebar #conversations .conversation-item.active .conversation-label{color:#9b87ab}#sidebar #conversations .conversation-item.active .conversation-title{color:#2c2c2c}#main{flex:1;display:flex;flex-direction:column;background:#fff}#main #chat-header{padding:20px 32px;border-bottom:1px solid #E8E8E8;background:#fff}#main #chat-header h2{font-size:18px;font-weight:600;color:#2c2c2c;margin-bottom:4px}#main #chat-header p{font-size:13px;color:#6b6b6b}#main #chat-messages{flex:1;overflow-y:auto;padding:32px;background:#fbf7f4}#main #chat-messages .chat-message{display:flex;gap:12px;margin-bottom:24px;animation:fadeIn .4s ease}#main #chat-messages .chat-message .chat-message-avatar{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;font-weight:600}#main #chat-messages .chat-message .chat-message-content{max-width:70%;background:#fff;padding:16px 18px;border-radius:16px;box-shadow:0 2px 8px #0000000f;font-size:15px;line-height:1.6;color:#2c2c2c}#main #chat-messages .chat-message .chat-message-content strong{color:#9b87ab;font-weight:600}#main #chat-messages .chat-message .chat-message-content .status-indicator{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;background:#b8a1c61a;border:1px solid rgba(184,161,198,.2);border-radius:20px;margin-top:8px;font-size:13px;color:#9b87ab;font-weight:500}#main #chat-messages .chat-message .chat-message-content .status-dot{width:8px;height:8px;background:#b8a1c6;border-radius:50%;animation:pulse 1.5s infinite}#main #chat-messages .chat-message .chat-message-content .insights-box{background:linear-gradient(135deg,#f5f0ff,#faf5ff);border-left:4px solid #9B87AB;padding:16px;border-radius:8px;margin:8px 0}#main #chat-messages .chat-message.chat-message-assistant{justify-content:flex-start}#main #chat-messages .chat-message.chat-message-assistant .chat-message-avatar{background:linear-gradient(135deg,#b8a1c6,#9b87ab);color:#fff;box-shadow:0 2px 8px #9b87ab4d}#main #chat-messages .chat-message.chat-message-user{justify-content:flex-end}#main #chat-messages .chat-message.chat-message-user .chat-message-avatar{background:linear-gradient(135deg,#d4c4d8,#c4b4c8);color:#fff;box-shadow:0 2px 8px #d4c4d84d}#main #chat-messages .chat-message.chat-message-user .chat-message-content{background:linear-gradient(135deg,#e8dde8,#d8cdd8)}#main #chat-input-bar{border-top:1px solid #E8E8E8;background:#fff;padding:16px 32px 20px;display:flex;align-items:flex-end;gap:12px}#main #chat-input-bar #chat-input-actions-left{display:flex;gap:8px;align-items:center}#main #chat-input-bar #chat-input-wrapper{flex:1;position:relative}#main #chat-input-bar #chat-input-wrapper #chat-input-text{width:100%;min-height:44px;max-height:120px;padding:12px 16px;border:2px solid #E8E8E8;border-radius:12px;font-family:inherit;font-size:15px;line-height:1.5;resize:none;outline:none;transition:border-color .2s ease;background:#fbf7f4}#main #chat-input-bar #chat-input-wrapper #chat-input-text:focus{border-color:#b8a1c6;background:#fff}#main #chat-input-bar #chat-input-wrapper #chat-input-text::placeholder{color:#999}#main #chat-input-bar .chat-input-button{width:40px;height:40px;border:none;background:linear-gradient(135deg,#b8a1c6,#9b87ab);color:#fff;border-radius:10px;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:18px;transition:all .2s ease;box-shadow:0 2px 6px #9b87ab4d;flex-shrink:0}#main #chat-input-bar .chat-input-button:hover{transform:translateY(-2px);box-shadow:0 4px 12px #9b87ab66}#main #chat-input-bar .chat-input-button:active{transform:translateY(0)}#main #chat-input-bar .chat-input-button.chat-input-button-secondary{background:#fff;border:2px solid #E8E8E8;color:#9b87ab;box-shadow:none}#main #chat-input-bar .chat-input-button.chat-input-button-secondary:hover{border-color:#b8a1c6;background:#fbf7f4}#main #chat-input-bar .chat-input-button.chat-input-button-send{width:44px;height:44px;font-size:20px}#main #chat-input-bar .chat-input-button.tooltip{position:relative}#main #chat-input-bar .chat-input-button.tooltip:after{content:attr(data-tooltip);position:absolute;bottom:100%;left:50%;transform:translate(-50%);margin-bottom:8px;padding:6px 10px;background:#2c2c2c;color:#fff;font-size:12px;border-radius:6px;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity .2s ease}#main #chat-input-bar .chat-input-button.tooltip:hover:after{opacity:1}
