/* === GreenUP Chatbot core styles ================================== */
#green-chat-bubble{
  position:fixed;bottom:24px;right:24px;width:60px;height:60px;
  background:#4f7cf5;border-radius:50%;display:flex;align-items:center;
  justify-content:center;box-shadow:0 4px 12px rgba(0,0,0,.15);
  cursor:pointer;z-index:9999
}
#green-chat-panel{
  position:fixed;bottom:100px;right:24px;width:min(90vw,360px);max-height:70vh;
  display:none;flex-direction:column;background:#fff;border-radius:10px;
  box-shadow:0 4px 24px rgba(0,0,0,.2);overflow:hidden;z-index:9999
}
.green-header{
  padding:12px;background:#4f7cf5;color:#fff;text-align:center;
  font-size:16px;font-weight:600
}
.green-log{
  flex:1;padding:12px;overflow-y:auto;font-size:14px;line-height:1.4
}
.green-log div>div{word-break:break-word;max-width:80%}
.green-input-wrap{
  display:flex;align-items:center;gap:6px;padding:8px;border-top:1px solid #eee
}
.green-input{
  flex:1;height:44px;padding:8px 10px;border:1px solid #ccc;border-radius:4px;
  font-size:14px;line-height:1.2
}
.green-send-btn{
  flex-shrink:0;width:44px;height:44px;display:flex;align-items:center;
  justify-content:center;background:#4f7cf5;color:#fff;border:none;
  border-radius:6px;cursor:pointer;font-size:20px;line-height:1
}
.green-send-btn:disabled{opacity:.4;cursor:not-allowed}
@media(max-width:480px){.green-log div>div{max-width:75vw}}
