/* ملف CSS للأنماط الإدارية - إصلاح انتهاكات CSP */

/* أنماط معاينة الصور الإدارية */
.admin-image-preview {
    display: none;
    max-height: 100px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* أنماط صور معرض الصور الإداري */
.admin-gallery-thumb {
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.admin-gallery-thumb:hover {
    transform: scale(1.05);
}

/* أنماط صور الأخبار المميزة الإدارية */
.admin-featured-news-image {
    max-height: 200px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-featured-news-thumb {
    max-width: 80px;
    max-height: 60px;
    width: auto;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

/* أنماط شعار الموقع الإداري */
.admin-site-logo {
    max-height: 100px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* أنماط أيقونة الموقع المفضلة الإدارية */
.admin-site-favicon {
    max-height: 50px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* أنماط شعارات الشركاء الإدارية */
.admin-logo-thumb {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.admin-logo-thumb:hover {
    transform: scale(1.1);
}

.admin-logo-preview {
    max-height: 100px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* تحسينات إضافية للصور الإدارية */
.image-preview {
    transition: all 0.3s ease;
}

.image-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* أنماط السلايدر الإداري */
.admin-slider-thumb {
    max-width: 80px;
    max-height: 50px;
    width: auto;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.admin-slider-thumb:hover {
    transform: scale(1.1);
}

/* أنماط مقبض السحب الإداري */
.admin-drag-handle {
    cursor: move;
    color: #6c757d;
    transition: color 0.3s ease;
}

.admin-drag-handle:hover {
    color: #495057;
}

/* أنماط معاينة السلايدر الإداري */
.admin-slider-preview {
    max-width: 300px;
    max-height: 150px;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.admin-slider-preview:hover {
    transform: scale(1.02);
}

/* أنماط شعار المدرسة الإداري */
.admin-school-logo {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.admin-school-logo:hover {
    transform: scale(1.1);
}

.admin-school-logo-preview {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.admin-school-logo-preview:hover {
    transform: scale(1.02);
}

/* أنماط الحاوي المخفي الإداري */
.admin-hidden-container {
    display: none;
}

/* أنماط الاستجابة للصور الإدارية */
@media (max-width: 768px) {
    .admin-gallery-thumb {
        height: 150px;
    }
    
    .admin-featured-news-image {
        max-height: 150px;
    }
    
    .admin-site-logo {
        max-height: 80px;
    }
    
    .admin-logo-thumb {
        max-width: 60px;
        max-height: 60px;
    }
    
    .admin-slider-thumb {
        max-width: 60px;
        max-height: 40px;
    }
    
    .admin-slider-preview {
        max-width: 250px;
        max-height: 125px;
    }
    
    .admin-school-logo {
        max-width: 60px;
        max-height: 60px;
    }
    
    .admin-school-logo-preview {
        max-width: 150px;
        max-height: 150px;
    }
}
