/* إصلاحات عامة للموقع */
/* ====================== */

/* إزالة الفراغات العامة من جميع العناصر */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
}

/* إصلاح الفراغ فوق navbar */
.navbar-fixed-top,
.navbar.fixed-top,
.navbar {
    margin: 0 !important;
    padding-top: 0 !important;
    border: none !important;
    top: 0 !important;
}

/* إزالة فراغات Bootstrap الافتراضية */
.container,
.container-fluid {
    margin: 0 auto !important;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin: 0 !important;
}

/* إصلاح الفراغات في المتصفحات المختلفة */
body:before,
body:after,
html:before,
html:after {
    display: none !important;
}

/* إزالة الفراغات من أعلى الصفحة */
body > *:first-child {
    margin-top: 0 !important;
}

/* إصلاح خاص لشريط التنقل */
nav.navbar {
    position: sticky !important;
    top: 0 !important;
    margin: 0 !important;
    padding: 1rem 0 !important;
    z-index: 1050 !important;
}

/* إصلاح الفراغ في أعلى لوحة التحكم */
.dashboard-body {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

/* إزالة الحدود والفراغات الإضافية */
.navbar-nav,
.navbar-brand,
.nav-item,
.nav-link {
    margin: 0;
}

/* إصلاح مشاكل الهوامش في RTL */
[dir="rtl"] .navbar {
    margin: 0 !important;
}

[dir="rtl"] body {
    margin: 0 !important;
    padding: 0 !important;
}

/* إصلاح لجميع المتصفحات */
@media screen {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .navbar {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

/* إصلاح خاص للجوال */
@media (max-width: 768px) {
    body {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .navbar {
        margin: 0 !important;
        padding: 0.5rem 0 !important;
    }
}

/* إصلاح عناصر Bootstrap */
.bg-primary {
    margin: 0 !important;
}

.fixed-top {
    top: 0 !important;
    margin: 0 !important;
}

/* إزالة أي فراغات خفية */
*:before,
*:after {
    margin: 0;
    padding: 0;
}

/* إصلاح الفراغ الأبيض فوق الصفحة */
html:first-child,
body:first-child {
    margin-top: 0 !important;
}

/* تأكيد عدم وجود فراغات */
.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

/* إصلاح نهائي للفراغ فوق navbar */
body > nav:first-child,
body > .navbar:first-child {
    margin-top: 0 !important;
}
