#lps-chatbot-widget{position:fixed;bottom:20px;right:20px;z-index:999999;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,sans-serif;font-size:14px;line-height:1.5}#lps-chatbot-bubble{width:60px;height:60px;border-radius:50%;background:var(--lps-chatbot-color,#2579bf);display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 20px rgba(0,0,0,.25);transition:transform .3s ease,box-shadow .3s ease;animation:lps-chatbot-pulse 3s ease-in-out infinite}#lps-chatbot-bubble:hover{transform:scale(1.1);box-shadow:0 6px 25px rgba(0,0,0,.35)}@keyframes lps-chatbot-pulse{0%,100%{box-shadow:0 4px 20px rgba(0,0,0,.25)}50%{box-shadow:0 4px 20px rgba(0,74,173,.5)}}#lps-chatbot-window{position:absolute;bottom:75px;right:0;width:380px;max-width:calc(100vw - 40px);height:520px;max-height:calc(100vh - 120px);background:#fff;border-radius:16px;box-shadow:0 10px 40px rgba(0,0,0,.2);display:flex;flex-direction:column;overflow:hidden;transition:opacity .3s ease,transform .3s ease}#lps-chatbot-window.lps-chatbot-hidden{opacity:0;transform:translateY(20px) scale(.95);pointer-events:none}#lps-chatbot-header{background:var(--lps-chatbot-color,#2579bf);color:#fff;padding:14px 16px;display:flex;align-items:center;justify-content:space-between;flex-shrink:0}.lps-chatbot-header-info{display:flex;align-items:center;gap:10px}.lps-chatbot-avatar{width:36px;height:36px;background:rgba(255,255,255,.2);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px}.lps-chatbot-title{font-weight:600;font-size:15px}.lps-chatbot-status{font-size:12px;opacity:.85}#lps-chatbot-close{background:0 0;border:none;color:#fff;font-size:18px;cursor:pointer;padding:4px 8px;border-radius:4px;opacity:.8}#lps-chatbot-close:hover{opacity:1;background:rgba(255,255,255,.15)}#lps-chatbot-messages{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:12px;background:#f8f9fb}#lps-chatbot-messages::-webkit-scrollbar{width:4px}#lps-chatbot-messages::-webkit-scrollbar-thumb{background:#ccc;border-radius:4px}.lps-chatbot-msg{max-width:85%;padding:10px 14px;border-radius:16px;word-wrap:break-word;animation:lps-msg-appear .3s ease}@keyframes lps-msg-appear{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.lps-chatbot-msg.bot{background:#fff;color:#1a1a1a;align-self:flex-start;border-bottom-left-radius:4px;box-shadow:0 1px 3px rgba(0,0,0,.08)}.lps-chatbot-msg.user{background:var(--lps-chatbot-color,#2579bf);color:#fff;align-self:flex-end;border-bottom-right-radius:4px}.lps-chatbot-msg a{color:var(--lps-chatbot-color,#2579bf);text-decoration:underline}.lps-chatbot-msg.user a{color:#fff}.lps-chatbot-sources{margin-top:8px;padding-top:8px;border-top:1px solid #eee;font-size:12px;color:#666}.lps-chatbot-sources a{color:var(--lps-chatbot-color,#2579bf);text-decoration:none;font-weight:500}.lps-chatbot-sources a:hover{text-decoration:underline}.lps-chatbot-typing{display:flex;gap:4px;padding:12px 16px;align-self:flex-start;background:#fff;border-radius:16px;border-bottom-left-radius:4px;box-shadow:0 1px 3px rgba(0,0,0,.08)}.lps-chatbot-typing span{width:8px;height:8px;background:#aaa;border-radius:50%;animation:lps-typing-bounce 1.4s infinite ease-in-out}.lps-chatbot-typing span:nth-child(2){animation-delay:.2s}.lps-chatbot-typing span:nth-child(3){animation-delay:.4s}@keyframes lps-typing-bounce{0%,80%,100%{transform:scale(.6);opacity:.4}40%{transform:scale(1);opacity:1}}#lps-chatbot-actions{padding:8px 16px;display:flex;gap:8px;flex-wrap:wrap;background:#fff;border-top:1px solid #eee}#lps-chatbot-actions.lps-chatbot-hidden{display:none}.lps-chatbot-action-btn{padding:6px 14px;border-radius:20px;border:1px solid var(--lps-chatbot-color,#2579bf);background:#fff;color:var(--lps-chatbot-color,#2579bf);font-size:13px;cursor:pointer;transition:all .2s}.lps-chatbot-action-btn:hover{background:var(--lps-chatbot-color,#2579bf);color:#fff}#lps-chatbot-input-area{padding:12px 16px;display:flex;gap:8px;align-items:flex-end;background:#fff;border-top:1px solid #eee}#lps-chatbot-input{flex:1;border:1px solid #ddd;border-radius:20px;padding:8px 16px;font-size:14px;font-family:inherit;resize:none;max-height:100px;outline:none;transition:border-color .2s}#lps-chatbot-input:focus{border-color:var(--lps-chatbot-color,#2579bf)}#lps-chatbot-send{width:38px;height:38px;border-radius:50%;border:none;background:var(--lps-chatbot-color,#2579bf);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:transform .2s,opacity .2s;flex-shrink:0}#lps-chatbot-send:hover{transform:scale(1.05)}#lps-chatbot-send:disabled{opacity:.5;cursor:not-allowed}@media (max-width:480px){#lps-chatbot-window{width:calc(100vw - 20px);height:calc(100vh - 100px);bottom:70px;right:-10px;border-radius:12px}#lps-chatbot-bubble{width:80px;height:80px}}.lps-chatbot-msg.bot strong{font-weight:600}.lps-chatbot-msg.bot em{font-style:italic}.lps-chatbot-msg.bot ul,.lps-chatbot-msg.bot ol{margin:6px 0;padding-left:20px}.lps-chatbot-msg.bot li{margin:2px 0}.lps-chatbot-msg.bot p{margin:4px 0}.lps-chatbot-msg.bot code{background:#f0f0f0;padding:1px 4px;border-radius:3px;font-size:13px}.aide_tooltip{position:absolute;top:-10px;right:90px;background:#2579bf;color:#fff;padding:8px 16px;border-radius:20px;font-size:14px;font-weight:700;white-space:nowrap;box-shadow:0 2px 8px rgba(0,0,0,.2);animation:tooltipPulse 2s ease-in-out infinite;pointer-events:none}.aide_tooltip:after{content:'';position:absolute;right:-8px;top:50%;transform:translateY(-50%);border-width:6px;border-style:solid;border-color:transparent transparent transparent #2579bf}@keyframes tooltipPulse{0%,100%{opacity:1;transform:translateX(0)}50%{opacity:.7;transform:translateX(-5px)}}#lps-chatbot-bubble img{width:50px;height:50px;border-radius:50%}