 /* تنسيق النافذة المنبثقة */
 .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    width: 80%;
    height: 80%;
    overflow-y: auto;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    text-align: center;
}

/* زر الإغلاق */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    color: red;
}

.close-btn:hover {
    color: darkred;
}

/* تنسيق الصور */
.pdf-images img {
    width: 100%;
    max-width: 600px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}