/* Estilo para el modal */
.whatsapp-modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background-color: #624a0b;
    padding: 20px;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.input-number {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.modal-button {
    padding: 10px 20px;
    border-radius: 15px;
    background-color: #000; /* Verde de WhatsApp */
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.modal-button.cancel-button {
    background-color: #000; /* Rojo para cancelar */
}

.modal-button:hover {
    opacity: 0.8;
}