body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    display: flex;
}

.asider {
    /*width: 250px;*/
    color: white;
    padding: 15px;
    height: 100vh;
}

.asider ul {
    list-style: none;
    padding: 0;
}

.asider li {
    margin-bottom: 10px;
}

.img_protag {
    display: flex;
}

.img1 {
    width: 50%;
}

.asider button {
    width: 100%;
    padding: 10px;
    background: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: right;
}

.asider button:hover {
    background: #004080;
}

section {
        margin: 26px 20px;
}

.content {
    display: none;
}

.content.active {
    display: block;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #0056b3;
}



.asider ul {
    list-style: none;
    /* إزالة النقاط */
    padding: 0;
    margin: 0;
    width: 100%;
}

/* عناصر القائمة */
.asider li {
    margin-bottom: 15px;
    /* مسافة بين العناصر */
    width: 100%;
}

/* أزرار الشريط الجانبي */
.asider button {
    width: 100%;
    padding: 10px 15px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: right;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}


.asider button:hover {
    background-color: #004080;

}


.asider button.active {
    background-color: #ffcc00;
    /* لون مميز عند التفعيل */
    color: #333;
    /* لون النص */
}

/* لجعل التصميم متجاوبًا */
@media (max-width: 768px) {
    .asider {
        width: 200px;

    }

    .asider button {
        font-size: 14px;

    }
}