/* Add custom CSS styles below */ 
.whatsapp-button {
    position: fixed;
    bottom: 20px; /* المسافة الافتراضية من الأسفل */
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    animation: pulse 1.5s infinite;
}

/* لما تمرر الماوس على الزر يكبر شوي */
.whatsapp-button:hover {
    transform: scale(1.1);
}

/* أيقونة الواتساب */
.whatsapp-button img {
    width: 35px;
    height: 35px;
}

/* رفع الزر للأعلى أكثر على الجوال */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 109px; /* ارتفاع أكبر على الجوال عشان ما يغطيه أي شريط */
        width: 50px;
        height: 50px;
    }

    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }
}

/* تأثير النبض */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}