#chatbot-button{position:fixed;bottom:20px;right:20px;background-color:#e35640;color:#fff;border:none;border-radius:50%;width:60px;height:60px;box-shadow:0 4px 10px rgb(0 0 0 / .2);font-size:28px;cursor:pointer;z-index:999;transition:transform 0.3s}#chatbot-button:hover{transform:scale(1.1)}#chatbot-container{position:fixed;bottom:100px;right:0;width:350px;max-height:500px;height:500px;background:#fff;border-radius:15px;box-shadow:0 8px 30px rgb(0 0 0 / .2);display:flex;flex-direction:column;overflow:hidden;z-index:999;animation:fadeIn 0.3s ease-in-out}#chatbot-container.chatbot-hidden{display:none}@media screen and (max-width:600px){#chatbot-container{width:100vw;height:100vh;max-height:none;border-radius:0;bottom:0}}@keyframes fadeIn{from{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}#chatbot-header{background-color:#e35640;color:#fff;padding:15px;font-weight:700;display:flex;justify-content:space-between;align-items:center;flex-shrink:0}#chatbot-close-chat{background:none;border:none;color:#fff;font-size:20px;cursor:pointer}#chatbot-messages{display:flex;flex-direction:column;flex:1;padding:15px;overflow-y:auto;background:#fdfbf6;min-height:0}.chatbot-bubble{padding:10px 15px;margin:8px 0;border-radius:20px;max-width:80%;display:inline-block;clear:both;animation:bubbleIn 0.3s ease-in-out}@keyframes bubbleIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.chatbot-bubble{font-size:.8em}.chatbot-bubble p{font-family:inherit;font-weight:inherit;color:inherit;margin-bottom:10px}.chatbot-bubble a{color:#a33a2f;font-weight:700}.chatbot-bubble h1,.chatbot-bubble h2,.chatbot-bubble h3,.chatbot-bubble h4{font-weight:700;margin:10px 0}.chatbot-bubble ul,.chatbot-bubble ol,.chatbot-bubble li{list-style:disc;margin-bottom:10px}.chatbot-bubble ul,.chatbot-bubble ol{padding-left:20px}.chatbot-user-bubble{background-color:#e6f7ff;margin-left:auto}.chatbot-bot-bubble{background-color:#fff4e6;margin-right:auto}#chatbot-input{display:flex;border-top:1px solid #ddd;background:#fff;flex-shrink:0;padding:10px}#chatbot-input input{flex:1;border:none;padding:10px;font-size:14px;outline:none}#chatbot-send-btn{background:none;border:none;padding:10px;font-size:18px;color:#e35640;cursor:pointer}.chatbot-typing-indicator{font-style:italic;font-size:13px;margin-top:5px;color:#999}.chat-preview-bubble{position:fixed;bottom:100px;right:0;width:270px;height:70px;background:#fff;border:2px solid #333;border-radius:12px;padding:10px 15px;box-shadow:2px 2px 8px rgb(0 0 0 / .2);z-index:9999}.chat-preview-bubble::after{content:"";position:absolute;bottom:-15px;right:40px;width:0;height:0;border-left:10px solid #fff0;border-right:10px solid #fff0;border-top:15px solid #fff}.chat-preview-bubble::before{content:"";position:absolute;bottom:-17px;right:39px;width:0;height:0;border-left:11px solid #fff0;border-right:11px solid #fff0;border-top:17px solid #333}.chat-preview-close-btn{position:absolute;top:5px;right:10px;cursor:pointer;font-weight:700;font-size:16px;color:#666}.chat-preview-message{margin-top:15px;text-align:center;font-size:14px;color:#333;display:none}