#igm-chat-wrap { position:fixed; bottom:20px; right:20px; z-index:999999; display:flex; align-items:center; gap:12px; flex-direction: row-reverse; }
#igm-chat-btn { background:none; border:none; cursor:pointer; padding:0; display:block; }
#igm-chat-icon { width:200px; height:200px; object-fit:contain; display:block; }
#igm-chat-message {
  display:inline-block !important;
  max-width:320px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  font-size: 14px;
  color:#222;
  line-height:1.3;
  text-align:left;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer;
}
#igm-chat-panel {
  display:none;
  position:fixed;
  right:20px; bottom:50px;
  width:360px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
  overflow:hidden;
}
#igm-chat-panel.open { display:block; }
#igm-chat-close { position:absolute; top:10px; right:10px; width:32px; height:32px; }
#igm-chat-frame { width:100%; height:100%; border:0; }
@media (max-width:480px) {
  #igm-chat-wrap { gap:8px; }
  #igm-chat-message { display:none; }
  #igm-chat-icon { width:120px; height:120px; }
  #igm-chat-panel { width:100%; height:50vh; right:0; bottom:0; border-radius:0; }
}
.igm-message-hidden { display:none !important; }
