#ise-chat-toggle{position:fixed;bottom:1.5rem;right:1.5rem;z-index:1000;width:56px;height:56px;border-radius:50%;background:#1d9e55;color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(29,158,85,.4);transition:transform .2s,opacity .2s,box-shadow .2s}#ise-chat-toggle:hover{transform:scale(1.08);box-shadow:0 6px 24px rgba(29,158,85,.5)}#ise-chat-toggle.ise-chat-toggle-hidden{opacity:0;pointer-events:none;transform:scale(.8)}#ise-chat{position:fixed;bottom:1.5rem;right:1.5rem;z-index:1001;width:370px;max-width:calc(100vw - 2rem);height:520px;max-height:calc(100vh - 3rem);background:#0f1510;border:1px solid rgba(255,255,255,.07);border-radius:16px;display:flex;flex-direction:column;overflow:hidden;box-shadow:0 12px 40px rgba(0,0,0,.6);opacity:0;pointer-events:none;transform:translateY(20px) scale(.95);transition:opacity .25s,transform .25s}#ise-chat.ise-chat-open{opacity:1;pointer-events:auto;transform:translateY(0) scale(1)}.ise-chat-header{display:flex;align-items:center;gap:.75rem;padding:.9rem 1rem;background:#161d15;border-bottom:1px solid rgba(255,255,255,.07)}.ise-chat-avatar{width:36px;height:36px;border-radius:50%;background:#1d9e55;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.9rem;flex-shrink:0}.ise-chat-info{flex:1;display:flex;flex-direction:column}.ise-chat-name{font-weight:600;font-size:.9rem;color:#fff}.ise-chat-status{font-size:.7rem;color:#6a7a6e}.ise-chat-close{background:0 0;border:none;color:#6a7a6e;font-size:1.5rem;cursor:pointer;padding:.2rem .5rem;transition:color .2s}.ise-chat-close:hover{color:#fff}.ise-chat-messages{flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:.75rem}.ise-msg{max-width:85%;animation:.3s iseMsgIn}.ise-msg p{padding:.7rem 1rem;border-radius:12px;font-size:.85rem;line-height:1.55;margin:0}.ise-msg-bot{align-self:flex-start}.ise-msg-bot p{background:#161d15;color:#e8ede9;border:1px solid rgba(255,255,255,.07);border-bottom-left-radius:4px}.ise-msg-user{align-self:flex-end}.ise-msg-user p{background:#1d9e55;color:#fff;border-bottom-right-radius:4px}.ise-typing .ise-dots{display:flex;gap:4px;padding:.7rem 1rem;background:#161d15;border:1px solid rgba(255,255,255,.07);border-radius:12px 12px 12px 4px}.ise-dots span{width:7px;height:7px;border-radius:50%;background:#6a7a6e;animation:1.4s ease-in-out infinite both iseBounce}.ise-dots span:first-child{animation-delay:-.32s}.ise-dots span:nth-child(2){animation-delay:-.16s}@keyframes iseBounce{0%,100%,80%{transform:scale(.6);opacity:.4}40%{transform:scale(1);opacity:1}}@keyframes iseMsgIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.ise-chat-input{display:flex;align-items:center;gap:.5rem;padding:.75rem 1rem;border-top:1px solid rgba(255,255,255,.07);background:#161d15}.ise-chat-input input{flex:1;background:#0f1510;border:1px solid rgba(255,255,255,.1);border-radius:8px;padding:.6rem .9rem;font-size:.85rem;color:#e8ede9;outline:0;font-family:inherit;transition:border-color .2s}.ise-chat-input input:focus{border-color:rgba(29,158,85,.5)}.ise-chat-input input::placeholder{color:#6a7a6e}.ise-chat-input button{background:#1d9e55;border:none;color:#fff;width:36px;height:36px;border-radius:8px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;flex-shrink:0}.ise-chat-input button:hover{background:#2dca6e}@media (max-width:480px){#ise-chat{bottom:0;right:0;width:100vw;max-width:100vw;height:100vh;max-height:100vh;border-radius:0}#ise-chat-toggle{bottom:1rem;right:1rem;width:50px;height:50px}}.ise-chat-messages::-webkit-scrollbar{width:5px}.ise-chat-messages::-webkit-scrollbar-track{background:0 0}.ise-chat-messages::-webkit-scrollbar-thumb{background:rgba(255,255,255,.1);border-radius:4px}