#whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px; /* Cambiado a la izquierda */
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#whatsapp-float:hover {
  transform: scale(1.1);
}

#country-modal {
  position: fixed;
  bottom: 90px;
  left: 20px; /* También alineado a la izquierda */
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  display: none;
  z-index: 10000;
  max-width: 220px;
  font-family: inherit;
}

#country-modal p {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

#country-modal button {
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #25d366;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s;
}

#country-modal button:hover {
  background-color: #1ebe5d;
}
