.floating-wpp {
  position: fixed;
  bottom: 20px;
  right: 40px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* Floating Button */
.wpp-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background: rgb(38, 212, 102, 0);
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Popup */
.wpp-popup {
  display: none;
  width: 260px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  margin-bottom: 10px;
}

/* Header */
.wpp-header {
  background: #128C7E;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wpp-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Message */
.wpp-message {
  background: rgb(229, 221, 214);
  padding: 10px;
  font-size: 13px;
  color: #444;
}

/* Input */
.wpp-input {
  width: 100%;
  border: none;
  border-top: 1px solid #eee;
  padding: 10px;
  resize: none;
  height: 60px;
  font-size: 14px;
  color: #606060;
}

/* Send */
.wpp-send {
  width: 100%;
  border: none;
  background: rgb(70, 150, 70);
  color: white;
  padding: 10px;
  cursor: pointer;
}
