/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #1b982c00;
  border-radius: 50%;
  padding: 6px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-fab img {
  width: 40px;
  height: 40px;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

/* Chat Popup */
.whatsapp-chat-popup {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  font-family: sans-serif;
}

.whatsapp-chat-popup header {
  background-color: #25d366;
  color: white;
  padding: 10px;
  font-weight: bold;
}

.whatsapp-chat-popup form {
  padding: 10px;
}

.whatsapp-chat-popup textarea {
  width: 100%;
  height: 80px;
  resize: none;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.whatsapp-chat-popup button {
  background-color: #25d366;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
}
