/* تنسيقات الإعلانات */

/* تنسيق عام لكل حاويات الإعلانات */
.ad-container {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
    padding: 15px 0;
    background-color: #f8f9fa;
    text-align: center;
    clear: both;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* حاوية الإعلان العلوي (تحت الهيدر) */
.ad-container.top-ad {
    margin-top: 0;
    border-bottom: 1px solid #e9ecef;
    min-height: 90px;
}

/* حاوية الإعلان الوسطي */
.ad-container.middle-ad {
    background-color: #f8f9fa;
    margin: 30px 0;
    min-height: 250px;
    padding: 20px 0;
}

/* حاوية الإعلان السفلي */
.ad-container.bottom-ad {
    margin-bottom: 0;
    border-top: 1px solid #e9ecef;
    min-height: 90px;
}

/* تنسيق غلاف الإعلان داخل الحاوية */
.ad-wrapper {
    width: 100%;
    max-width: 728px;
    margin: 0 auto;
    min-height: 90px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* تنسيقات خاصة لكل نوع إعلان */
.header-ad-unit,
.bottom-ad-unit {
    min-height: 90px;
    width: 100%;
    max-width: 728px;
}

.middle-ad-unit {
    min-height: 250px;
    width: 100%;
    max-width: 728px;
}

/* تنسيق إعلانات الشريط الجانبي */
.sidebar-ad-container {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    min-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-ad-wrapper {
    min-height: 250px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.sidebar-ad-unit {
    min-height: 250px;
    width: 100%;
    max-width: 300px;
}

/* تنسيقات للأجهزة المحمولة */
@media (max-width: 768px) {
    .ad-container {
        padding: 10px 0;
        min-height: 70px;
    }
    
    .ad-wrapper {
        min-height: 50px;
    }
    
    .header-ad-unit,
    .bottom-ad-unit {
        min-height: 50px;
    }
    
    .middle-ad-unit {
        min-height: 200px;
    }
    
    .sidebar-ad-container {
        padding: 10px;
        min-height: 220px;
    }
    
    .sidebar-ad-wrapper,
    .sidebar-ad-unit {
        min-height: 200px;
    }
}

/* ضمان عدم ظهور الإعلانات بشكل غير لائق عند عرض المحتوى */
.ad-container:empty, 
.ad-wrapper:empty, 
.sidebar-ad-container:empty,
.sidebar-ad-wrapper:empty {
    display: none;
}

/* منع التداخل مع عناصر أخرى */
.ad-container * {
    max-width: 100%;
} 