:root{--chat-send-button-color:#00a3e0;--chat-send-button-text-color:#fff;--chat-border-color:#236a78;--chat-background:#f5f5f5}.chat{background:var(--chat-background);height:100vh;height:calc(100vh - env(safe-area-inset-bottom));box-shadow:0 4px 20px rgba(0,160,255,.15)}.chat .loading-icon{display:inline-block;position:relative;width:40px;height:40px;border-radius:50%;border:4px solid var(--chat-border-color);border-top:4px solid rgba(0,0,0,0);animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.chat .chat-view{display:flex;flex-direction:column;justify-content:space-between;height:100%;overflow:hidden}.chat .chat-view .chat-header{display:flex;align-items:center;justify-content:space-between;padding:24px}.chat .chat-view .chat-content{flex:1;overflow-y:auto;padding:1rem}.chat .chat-view .simple-message .avatar{display:inline-block;width:40px;height:40px}.chat .chat-view .simple-message .avatar img{width:100%;height:100%;border-radius:50%}.chat .chat-view .simple-message .message-text{padding:.5rem 1rem;border-radius:.5rem;margin-bottom:.5rem;font-size:14px;list-style:1.6;color:#222}.chat .chat-view .simple-message .content-wrap{display:inline-block;max-width:calc(100% - 80px)}.chat .chat-view .chat-footer{display:flex;flex-wrap:wrap;align-items:center;padding:.5rem 1rem;border-top:1px solid var(--chat-border-color)}.chat .chat-view .chat-footer .input-box{display:flex;flex:1;padding:.5rem;border-radius:.25rem;outline:none}.chat .chat-view .chat-footer .input-box input{flex:1;padding:10px 14px;border-radius:20px;border:none;background:#2d5a67;color:#fff;font-size:14px;box-shadow:inset 0 2px 6px rgba(0,255,255,.1);outline:none;opacity:.8}.chat .chat-view .chat-footer .input-box input:focus{opacity:1}.chat .chat-view .chat-footer .mic-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;background-color:#ff4343;border:none;border-radius:50%;margin-left:1rem;cursor:pointer}.chat .chat-view .chat-footer .mic-icon.active{background-color:#28a745;animation:pulse 1.5s infinite}.chat .chat-view .chat-footer .mic-icon.disabled{opacity:.5;animation:none}.chat .chat-view .chat-footer .mic-icon:disabled{opacity:.5;cursor:default}@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(40,167,69,.7)}70%{box-shadow:0 0 0 10px rgba(40,167,69,0)}to{box-shadow:0 0 0 0 rgba(40,167,69,0)}}.chat .chat-view .chat-footer .send-button{width:40px;height:40px;display:flex;align-items:center;justify-content:center;background-color:var(--chat-send-button-color);color:var(--chat-send-button-text-color);border:none;border-radius:50%;cursor:pointer;margin-left:1rem}.chat .chat-view .chat-footer .send-button:hover{opacity:.8}.chat .chat-view .chat-footer .send-button:disabled{opacity:.7;animation:none}.chat .chat-view .chat-footer .end-button{margin:8px 8px 0;width:calc(100% - 16px);height:40px;background-color:#cc3232;border-radius:20px}.chat .chat-view .chat-footer .end-button:hover{opacity:.8}.chat .chat-view .chat-footer .end-button:disabled{opacity:.7;animation:none}.chat.default .message-text{border-radius:16px}.chat.default .msg-assistant .message-text{background:#2e5c68;box-shadow:0 2px 10px rgba(0,255,255,.1);color:#fff}.chat.default .msg-user .message-text{border-radius:20px 4px 20px 20px;background:#ffbd1f}.chat.landbank{box-shadow:0 20px 60px rgba(0,0,0,.5019607843)}.chat.landbank .message-text{font-size:16px}.chat.landbank .msg-assistant .message-text{background:linear-gradient(135deg,rgb(46,74,63),rgb(59,107,90));box-shadow:0 10px 30px rgba(46,74,63,.9);border:1px solid #8aa992;color:#fff}.chat.landbank .msg-user .message-text{border-radius:20px 4px 20px 20px;background:#ffbd1f}