#wl-whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#wl-whatsapp-button svg {
    width: 30px;
    height: 30px;
}

#wl-form-container {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #fff;
    padding: 15px;
    width: 270px;
    box-shadow: 0 0 15px rgba(0,0,0,.25);
    border-radius: 8px;
    z-index: 9999;
}

#wl-form input {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#wl-form button {
    width: 100%;
    background: #25d366;
    border: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

/* POPUP */
#wl-popup-success {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #25d366;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 10000;
    text-align: center;
}
