#waf-chat-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2563eb;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 999999 !important;
}

#waf-chat-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  height: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 999999 !important;
}

.hidden {
  display: none;
}

.waf-chat-header {
  padding: 12px;
  background: #2563eb;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.waf-chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

.waf-message.bot {
  background: #f1f5f9;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.waf-chat-input {
  border-top: 1px solid #ddd;
  padding: 8px;
}
/* FORCE HIDE CHAT BOX ON LOAD */
#waf-chat-box {
  display: none !important;
}

/* SHOW WHEN ACTIVE */
#waf-chat-box.waf-open {
  display: flex !important;
}
