/* تنسيق أيقونة الواتساب العائمة */
.floating-whatsapp {
    position: fixed;
    bottom: 50px; /* تم تعديلها من 20px إلى 80px لرفع الأيقونة للأعلى */
    right: 20px; /* تغيير من left إلى right لجعل الأيقونة على الجانب الأيمن */
    z-index: 999;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 8px 15px; /* تم تقليل الـpadding لتصغير حجم الزر */
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

.floating-whatsapp i {
    font-size: 20px; /* تم تصغير الأيقونة من 24px إلى 20px */
    margin-left: 6px;
}

.floating-whatsapp-text {
    font-size: 14px; /* تم تصغير نص الواتساب من 16px إلى 14px */
    white-space: nowrap;
}

/* تعديلات للشاشات الصغيرة */
@media (max-width: 576px) {
    .floating-whatsapp {
        padding: 6px 12px; /* تم تقليل الـpadding للشاشات الصغيرة */
    }
    
    .floating-whatsapp i {
        font-size: 18px; /* تصغير حجم الأيقونة للشاشات الصغيرة */
        margin-left: 4px;
    }
    
    .floating-whatsapp-text {
        font-size: 12px; /* تصغير حجم النص للشاشات الصغيرة */
    }
}
