#whatsapp-widget {
  position: fixed;
  bottom: 70px; /* Adjusted to float above the button */
  left: 20px;   /* Adjusted to float right or left */
  width: 250px;
  background-color: #25D366;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: white;
  z-index: 1000;
  display: none; /* Start hidden */
}

.message-preview {
  margin-bottom: 10px;
}

.message-box {
  display: flex;
  justify-content: space-between;
}

#whatsapp-message {
  flex-grow: 1;
  padding: 5px;
  border-radius: 5px;
  border: none;
  margin-right: 5px;
}

#send-message {
  background-color: #128C7E;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 5px 10px;
}

#send-message:hover {
  background-color: #075E54;
}
