/* Fullscreen overlay */
#pmg-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);

    /* 👇 Center the content */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popup content container */
#pmg-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    text-align: center;
}

/* Close button */
#pmg-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 50px;
    color: #f50707;
    cursor: pointer;
    z-index: 10000;
}

/* Media slides */
.pmg-slide {
    display: none;
}
.pmg-slide img, .pmg-slide embed {
    max-width: 100%;
    max-height: 500px;
    border-radius: 6px;
}
.pmg-active {
    display: block;
}

/* Navigation arrows */
.pmg-prev, .pmg-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #333;
    background: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    user-select: none;
}

.pmg-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.pmg-active {
    display: block;
    opacity: 1;
}

.pmg-prev { left: -40px; }
.pmg-next { right: -40px; }
