/* Popup Overlay */
#eid-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* خلفية معتمة */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#eid-popup-overlay.eid-popup-hidden {
    display: none;
}

/* Popup Container */
#eid-popup-container {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 90%; /* لضمان التجاوب مع الشاشات الصغيرة */
    max-height: 90vh; /* لضمان التجاوب مع الشاشات الصغيرة */
    overflow: auto; /* لإضافة شريط تمرير إذا كانت الصورة كبيرة */
}

/* Popup Image */
#eid-popup-image {
    max-width: 100%;
    max-height: calc(90vh - 80px); /* (90vh - padding - space for close button) */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

/* Close Button */
#eid-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: #555;
    cursor: pointer;
    line-height: 1;
}

#eid-popup-close:hover {
    color: #000;
}

/* إضافات لتحسين العرض على الشاشات الصغيرة */
@media (max-width: 600px) {
    #eid-popup-container {
        padding: 15px;
    }
    #eid-popup-close {
        font-size: 24px;
        top: 5px;
        right: 10px;
    }
}