

/* Floating Button */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Popup Window */
.whatsapp-popup {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  overflow: hidden;
}

.popup-header {
  background: #25d366;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.popup-body textarea {
  resize: none;
  height: 60px;
  padding: 5px;
  margin-bottom: 10px;
}

.popup-body button {
  background: #25d366;
  border: none;
  color: white;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
}


