html.pmv-no-scroll { overflow: hidden; }
.pmv-modal { position: fixed; inset: 0; z-index: 9999; display:flex; align-items:center; justify-content:center; }
.pmv-hidden { display:none; }
.pmv-backdrop { position:absolute; inset:0; background:rgba(0,0,0,0.7); }
.pmv-dialog { position:relative; background:#fff; top:3vh; width:96vw; height:80vh; max-width:96vw; max-height:80vh; border-radius:8px; overflow:hidden; display:flex; flex-direction:column; }
.pmv-body { flex:1; padding:12px 16px; overflow:hidden; display:flex; flex-direction:column; }
.pmv-title { font-size:18px; color:#333; margin:0 0 10px; }
.pmv-content { flex:1; overflow-y:auto; color:#555; }
.pmv-close, .pmv-nav { position:absolute; z-index:2; background:rgba(200,200,200,0.6); border:none; color:#333; cursor:pointer; font-size:24px; padding:8px 12px; border-radius:4px; }
.pmv-close { top:8px; right:12px; }
.pmv-prev { top:50%; left:10px; transform:translateY(-50%); }
.pmv-next { top:50%; right:10px; transform:translateY(-50%); }
.pmv-caption { background:#f0f0f0; color:#555; padding:6px 12px; font-size:13px; display:flex; justify-content:space-between; }
.pmv-image-wrap {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;           /* kép sosem lóg ki */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pmv-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;        /* arányos, nem torzul */
    display: block;
}