/* الخلفية الداكنة */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
}

/* النافذة */
.popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 90%;
    max-height: 80vh;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    z-index: 9999;
    direction: rtl;
    overflow: hidden;
    animation: popupFade 0.25s ease;
}

/* العنوان */
.popup-modal h3 {
    margin: 0;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

/* التفاصيل */
.popup-content {
    padding: 20px;
    background: #f3f3f3;
    line-height: 1.8;
    font-size: 16px;
    max-height: 60vh;
    overflow-y: auto;
}

/* زر الإغلاق */
.popup-close {
    position: absolute;
    top: 12px;
    left: 15px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #888;
}

.popup-close:hover {
    color: #000;
}

/* حركة ظهور */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.popup-trigger {
    color: #0066cc;
    border-bottom: 1px dashed #0066cc;
    cursor: pointer;
}

.popup-trigger:hover {
    color: #003d80;
    border-bottom: 1px solid #003d80;
}


