/* Floating chat v2 styles - responsive and navy small icon */
#wa-floating-chat-wrap{position:fixed;right:16px;bottom:90px;z-index:99999;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial;}
#wa-chat-button{width:50px;height:50px;border-radius:50%;background:#042a6b;border:0;box-shadow:0 8px 24px rgba(4,42,107,0.28);display:flex;align-items:center;justify-content:center;cursor:pointer;position:relative;transition:transform .12s}
#wa-chat-button:active{transform:scale(.98)}
#wa-chat-button svg{display:block;filter:drop-shadow(0 2px 0 rgba(0,0,0,0.06))}
#wa-chat-badge{position:absolute;top:6px;right:6px;background:#ff3b30;color:#fff;border-radius:12px;padding:2px 6px;font-size:11px;display:inline-block}
.wa-hidden{display:none}
#wa-chat-panel{width:860px;height:560px;border-radius:10px;overflow:hidden;background:#fff;box-shadow:0 28px 80px rgba(0,0,0,0.25);position:fixed;right:16px;bottom:160px;z-index:100000;display:none;flex-direction:column}
.wa-chat-header{display:flex;align-items:center;justify-content:space-between;padding:12px 14px;background:#042a6b;color:#fff}
.wa-chat-title{font-weight:700}
.wa-chat-body{display:flex;height:100%}
.wa-chat-left{width:320px;border-right:1px solid #eee;padding:8px;overflow:auto;background:#fafafa}
.wa-chat-right{flex:1;display:flex;flex-direction:column;align-items:stretch;justify-content:flex-start}
.wa-loading{color:#666;padding:8px}
.wa-chat-left .member-row{display:flex;align-items:center;gap:10px;padding:10px;border-radius:8px;cursor:pointer;background:transparent}
.wa-chat-left .member-row:hover{background:#fff}
.wa-chat-left .member-row.selected{background:#eaf3ff}
.wa-chat-left .member-row .avatar{width:44px;height:44px;border-radius:50%;overflow:hidden;flex:0 0 44px}
.wa-chat-left .member-row .name{font-weight:600;color:#0b2a22}
.wa-chat-left .status-dot{position:relative;left:auto;bottom:auto;margin-left:6px;width:12px;height:12px;border-radius:50%;background:#d9d9d9;border:2px solid #fff}
.wa-chat-left .status-dot.online{background:#25d366;box-shadow:0 0 0 6px rgba(37,211,102,0.06)}
.wa-iframe-placeholder{padding:20px;color:#666}
#wa-chat-iframe{width:100%;height:100%;border:0;display:none}
#wa-chat-close{background:transparent;border:0;color:#fff;font-size:22px;cursor:pointer}
/* Mobile adjustments */
@media (max-width:900px){
  #wa-chat-panel{width:100%;height:72vh;right:8px;left:8px;bottom:10vh;border-radius:12px}
  #wa-floating-chat-wrap{right:12px;bottom:70px}
  .wa-chat-left{width:38%;min-width:150px}
  #wa-chat-iframe{height:100%}
}
/* Prevent panel moving page content */
html.has-wa-panel-open{overflow:hidden;height:100%}
