/* تنسيق الأيقونة لتكون على يسار الشاشة */
#wa-angel {
    position: fixed;
    z-index: 10;
    left: 20px;
    bottom: 20px;
    background-color: #25d366;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* تنسيق الحاوية بالكامل (الشعار + القائمة) */
#whatsappContainer {
    position: fixed;
    bottom: 80px;
    left: 20px;
    width: 300px;
    z-index: 999;
    text-align: center; /* توسيط المحتوى */
    display: none; /* إخفاء الحاوية في البداية */
}

/* تنسيق الشعار */
.logo-container {
    position: relative;
    width: 100%; /* لضمان أن الشعار يملأ عرض الحاوية */
}

.logo {
    width: 60px; /* حجم الشعار */
    height: auto;
    position: absolute;
    top: -50px; /* لجعل الشعار يظهر فوق الحاوية */
    left: 50%; /* لوضع الشعار في المنتصف */
    transform: translateX(-50%); /* لضمان أن الشعار في المنتصف تمامًا */
    z-index: 1000;
}

/* تصميم القائمة */
#whatsappList {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    text-align: right;
    position: relative;
}

/* تصميم الأقسام داخل القائمة */
.whatsapp-section {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e0; /* حدود خفيفة للفصل بين الأقسام */
}

.whatsapp-section h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

/* تنسيق الروابط */
.whatsapp-section a {
    text-decoration: none;
    color: #25d366;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.whatsapp-section a i {
    margin-left: 10px; /* مسافة بين الأيقونة والرقم */
    font-size: 20px;
    color: #25d366;
}

.whatsapp-section a:hover {
    text-decoration: underline;
    
}
/* إخفاء عناصر التقليب بين البنرات */
.swiper-pagination-bullet {
    display: none !important;
}