/* WellGenie Chatbot (WordPress) */
.wgcb-root {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2000;
}

.wgcb-root[data-wgcb-position="right"] {
  left: auto;
  right: 24px;
}

.wg-chat-launcher {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: #5b6cff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  cursor: pointer;
  padding: 0;
}

.wg-chat-launcher svg {
  width: 26px;
  height: 26px;
}

.wg-chat-panel {
  position: absolute;
  bottom: 64px;
  left: 0;
  width: 360px;
  height: 520px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  overflow: hidden;
  display: none;
}

.wgcb-root[data-wgcb-position="right"] .wg-chat-panel {
  left: auto;
  right: 0;
}

.wg-chat-panel.open {
  display: block;
}

.wg-chat-header {
  background: #5b6cff;
  color: #fff;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.wg-chat-title {
  font-size: 14px;
  line-height: 1;
}

.wg-chat-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
}

.wg-chat-body {
  height: calc(100% - 44px);
}

.wg-chat-body .wg-webchat {
  height: 100%;
}

