/* Add this to your style.css */
#whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#widget-button {
    background-color: #25D366;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#widget-button img {
    width: 40px;
    height: 40px;
    display: block;
}

#widget-popup {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 300px;
    padding: 20px;
}

#popup-content {
    text-align: center;
}

#popup-content h4 {
    margin-bottom: 10px;
}

#popup-content p {
    margin-bottom: 15px;
}

#popup-content a {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
}

#close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}
