<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.whatsapp-floating-button {
    position: fixed;
    z-index: 9999;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-floating-button.bottom-right {
    right: 30px;
}

.whatsapp-floating-button.bottom-left {
    left: 30px;
}

.whatsapp-floating-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    text-decoration: none;
}

.whatsapp-floating-button img {
    width: 60%;
    height: auto;
}

.whatsapp-floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}</pre></body></html>