<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#whatsapp-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.popup-button {
    display: flex;
    align-items: center;
    background-color: #25d366; /* WhatsApp green */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px; /* Space between the icon and text */
}

.popup-content {
    display: none;
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 60px;
    right: 0;
    z-index: 1001;
}

/* #whatsapp-popup:hover .popup-content {
    display: block;
} */
</pre></body></html>