body {
    margin: 0;
    font-family: "Tajawal", sans-serif;
    background-color: #f5f5f5;
}

/* الشريط العلوي */
.d1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0044ba;
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 60px;
    z-index: 1002;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid #d4a017; /* خط فاصل ذهبي أنيق */
}

.d1 button {
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    display: none; /* يظهر فقط في الهاتف */
}

.h1 {
    margin: 0;
    font-size: 22px;
    text-align: center;
}

/* شعار الشركة */
#im1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* القائمة الجانبية */
.sidebar {
    position: fixed;
    top: 60px; /* أسفل الهيدر */
    right: 0;
    width: 230px;
    height: calc(100% - 60px);
    background-color: #1c009b;
    color: white;
    padding-top: 20px;
    transition: transform 0.3s ease;
    z-index: 1001;
    border-top: 1px solid rgba(255,255,255,0.3);
    overflow-y: auto; /* السماح بالتمرير إذا زادت العناصر */
}

.close-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: none; /* يظهر فقط في الهاتف */
}

.sidebar a {
    display: block;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
}

.sidebar a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* المحتوى الرئيسي */
.content {
    margin-top: 70px; /* لتجنب تداخل الهيدر */
    margin-right: 240px; /* لترك مساحة للسايدبار في الكمبيوتر */
    padding: 20px;
}

/* الخلفية الشفافة */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}

/* الهاتف */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(100%);
        top: 0;
        height: 100%;
        padding-top: 70px; /* منع اختفاء أول عنصر تحت الهيدر */
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .d1 button {
        display: block;
    }

    .content {
        margin-right: 0;
    }

    .overlay.show {
        display: block;
    }

    .close-btn {
        display: block;
    }
}
