.whatsapp-float-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

#whatsapp-icon {
  width: 80px;
  cursor: pointer;
}

.form-container {
  display: none;
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 300px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.form-container.show {
  display: block;
  opacity: 1;
}

.form-header {
  background-color: #25D366;
  color: #fff;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  margin: -15px -15px 15px -15px;
}

input,
button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #25D366;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border: none;
}

@media (max-width: 768px) {
  #whatsapp-icon {
    width: 60px;
  }
}