/* assets/css/chat-widget.css */
#dgeoChatFab{
  position:fixed; right:22px; bottom:22px; z-index:9999;
  width:56px; height:56px; border-radius:999px; border:0;
  background:#2483f0; color:#fff; font-size:22px;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}
#dgeoChatPanel{
  position:fixed; right:22px; bottom:90px; z-index:9999;
  width:360px; max-width:calc(100vw - 44px);
  height:520px; max-height:70vh;
  background:#0b1220; border:1px solid rgba(255,255,255,.08);
  border-radius:18px; overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
  display:flex; flex-direction:column;
}
#dgeoChatPanel.hidden{ display:none; }
#dgeoChatHeader{
  padding:12px 14px; display:flex; justify-content:space-between; align-items:center;
  background:linear-gradient(135deg, rgba(36,131,240,.35), rgba(224,32,32,.15));
  color:#fff;
}
#dgeoChatHeader .t1{ font-weight:800; }
#dgeoChatHeader .t2{ font-size:12px; opacity:.85; }
#dgeoChatClose{ background:transparent; border:0; color:#fff; font-size:16px; }
#dgeoChatBody{
  padding:12px; overflow:auto; flex:1;
  background:radial-gradient(circle at top left, rgba(36,131,240,.14), rgba(11,18,32,1));
}
.msg{
  padding:10px 12px; border-radius:14px; margin:8px 0; line-height:1.25;
  white-space:pre-wrap;
}
.msg.user{
  background:rgba(255,255,255,.12); color:#fff; margin-left:42px;
  border:1px solid rgba(255,255,255,.10);
}
.msg.bot{
  background:#ffffff; color:#0b1220; margin-right:42px;
}
#dgeoChatActions{
  padding:10px 12px; background:rgba(255,255,255,.04);
  border-top:1px solid rgba(255,255,255,.08);
}
#dgeoChatActions .wa{
  display:block; text-align:center; padding:10px 12px; border-radius:12px;
  background:#22c55e; color:#0b1220; font-weight:800; text-decoration:none;
}
#dgeoChatInput{
  display:flex; gap:8px; padding:10px 12px;
  background:rgba(0,0,0,.25);
  border-top:1px solid rgba(255,255,255,.08);
}
#dgeoChatText{
  flex:1; border-radius:12px; border:1px solid rgba(255,255,255,.10);
  padding:10px 12px; background:rgba(255,255,255,.08); color:#fff;
  outline:none;
}
#dgeoChatSend{
  border:0; border-radius:12px; padding:10px 12px;
  background:#2483f0; color:#fff; font-weight:800;
}
