#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#whatsapp-button img {
  width: 30px;
  height: 30px;
}

#whatsapp-form-modal {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: none;
  padding-top: 30px;
  padding-bottom: 30px;
}

#whatsapp-form-modal input {
  width: 100%;
  margin-bottom: 8px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#whatsapp-form-modal button {
  width: 100%;
  padding: 6px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button#close-modal {
  position: absolute;
  top: -6px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  width: auto;
  z-index: 9999;
  color: #000;
}


@media (max-width: 600px) {

  html,
  body {
    overflow-x: hidden !important;
  }
}