@charset "utf-8";
/* CSS Document */
 

.whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            border-radius: 10px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            z-index: 1000;
            text-decoration: none;
            color: white;
            font-size: 16px;
            font-weight: bold;
        }
        .whatsapp-button:hover {
            transform: scale(1.1);
        }
        .whatsapp-button img {
            width: 24px;
            height: 24px;
            margin-right: 8px;
        }