.whatsapp-widget {
            position: fixed;
            bottom: 10px;
            right: 12px;
            z-index: 1000;
        }
        
        .whatsapp-button img {
            width: 40px;
            cursor: pointer;
        }
        
        .whatsapp-popup {
            display: none;
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 300px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            font-family: Arial, sans-serif;
        }
        
        .whatsapp-header {
            display: flex;
            align-items: center;
            background: #075e54;
            color: #fff;
            padding: 10px;
            border-radius: 10px 10px 0 0;
        }
        
        .whatsapp-avatar {
            width: 45px;
            height: 42px;
            border-radius: 50%;
            margin-right: 10px;
        }
        
        .whatsapp-close {
            margin-left: auto;
            font-size: 28px;
            cursor: pointer;
            margin-right: 8px;
        }
        
        .whatsapp-body {
            padding: 16px;
            background: #ece5dd;
        }
        
        .whatsapp-body p {
            background: #FFFFFF;
            padding: 8px;
            border-radius: 8px;
            margin-bottom: 5px;
            display: inline-block;
            
        }
        
        .whatsapp-info p{
            font-size: 10px;
        }
        
        .whatsapp-start {
            display: block;
            text-align: center;
            background: #25D366;
            color: white;
            text-decoration: none;
            padding: 10px;
            font-weight: bold;
            border-radius: 0 0 10px 10px;
        }
        
        .whatsapp-start:hover{
            color: #075e54;
        }