/*
 ============================================================
 Legal Assistant Platform
 Authored & Architected by: 
    Hany Awad Farag Gerges
 All rights reserved © 2026
 ============================================================
*/


/* ═══════════════════════════════════════════════════════════════
   Gallery Overlay
   ═══════════════════════════════════════════════════════════════ */

.gallery-container-overlay {
    position:        fixed;
    inset:           0;
    z-index:         1050;
    display:         flex;
    align-items:     flex-start;
    justify-content: center;
    padding:         1.25rem;
    overflow-y:      auto;
    pointer-events:  none;

    /* Backdrop */
    background:      rgba(0,0,0,0);
    backdrop-filter: blur(0px);
    transition:      background .25s ease, backdrop-filter .25s ease;
}

.gallery-container-overlay:not(:empty) {
    background:      rgba(0,0,0,.65);
    backdrop-filter: blur(6px);
    pointer-events:  all;
}

.gallery-container-overlay:empty {
    display: none;
}

.gallery-container-overlay > * {
    pointer-events: all;
    width:          100%;
    max-width:      1240px;
    margin:         auto;
}

/* ── Loading state ────────────────────────────────────────────── */

.gallery-loading {
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    justify-content: center;
    gap:             1rem;
    min-height:      12rem;
    color:           rgba(255,255,255,.7);
    font-size:       1.75rem;
}

.gallery-loading::after {
    content:   'جارٍ التحميل…';
    font-size: .85rem;
    color:     rgba(255,255,255,.45);
}
