#chatbot-widget { position: fixed; bottom: 20px; right: 20px; z-index: 9999; font-family: inherit; }
.chatbot-panel { display: none; width: 320px; max-height: 420px; background: #fff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,.15); overflow: hidden; flex-direction: column; }
#chatbot-widget.open .chatbot-panel { display: flex; }
.chatbot-header { background: #00b29c; color: #fff !important; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; }
.chatbot-title { font-weight: 600; font-size: 15px; color: #fff !important; }
.chatbot-close { background: transparent; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 0; line-height: 1; opacity: .9; }
.chatbot-close:hover { opacity: 1; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 12px; max-height: 260px; min-height: 180px; }
.chatbot-msg { max-width: 85%; padding: 10px 12px; border-radius: 10px; margin-bottom: 8px; font-size: 14px; }
.chatbot-msg.bot { background: #f0f4f5; color: #333; }
.chatbot-msg.user { background: #00b29c; color: #fff; margin-left: auto; }
.chatbot-input-wrap { display: flex; padding: 10px; border-top: 1px solid #eee; gap: 8px; }
.chatbot-input-wrap input { flex: 1; padding: 10px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; }
.chatbot-input-wrap button { padding: 10px 14px; background: #00b29c; color: #fff; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; }
.chatbot-toggle { width: 56px; height: 56px; border-radius: 50%; background: #00b29c; color: #fff; border: none; cursor: pointer; font-size: 22px; box-shadow: 0 2px 12px rgba(0,179,156,.4); }
.chatbot-toggle:hover { background: #009683; }
