/* ========== DARK MODE GLOBAL FIXES ========== */

/* الخلفية الأساسية */
body.darkmode,
body.darkmode .site,
body.darkmode .site-content {
    background: #121212 !important;
    color: #e0e0e0 !important;
}

/* المقالات الداخلية */
body.darkmode .entry-content,
body.darkmode .inside-article,
body.darkmode article {
    background: #1a1a1a !important;
    color: #e0e0e0 !important;
    border-color: #333 !important;
}

body.darkmode .entry-content p,
body.darkmode .entry-content li {
    color: #ddd !important;
}

/* العناوين داخل المقال */
body.darkmode h1,
body.darkmode h2,
body.darkmode h3,
body.darkmode h4,
body.darkmode h5 {
    color: #fff !important;
}

/* الهيدر */
body.darkmode .site-header,
body.darkmode .main-navigation,
body.darkmode .inside-header {
    background: #1a1a1a !important;
    color: #e0e0e0 !important;
}

body.darkmode .main-navigation a {
    color: #ddd !important;
}
body.darkmode .main-navigation a:hover {
    color: #fff !important;
}

/* الفوتر */
body.darkmode .site-footer,
body.darkmode .inside-site-info {
    background: #1a1a1a !important;
    color: #ccc !important;
    border-top: 1px solid #333 !important;
}
body.darkmode .site-footer a {
    color: #bb86fc !important;
}
body.darkmode .site-footer a:hover {
    color: #fff !important;
}

/* الأزرار */
body.darkmode button,
body.darkmode .button,
body.darkmode input[type="submit"] {
    background: #333 !important;
    color: #fff !important;
    border: 1px solid #555 !important;
}
body.darkmode button:hover,
body.darkmode .button:hover,
body.darkmode input[type="submit"]:hover {
    background: #555 !important;
}
