﻿#popupOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popupContent {
    position: relative;
    max-width: 600px;
    width: 90%;
}

    .popupContent img {
        width: 100%;
        display: block;
        cursor: pointer;
        border-radius: 8px;
    }


.popupContent {
    position: relative;
    width: 95%;
    max-width: 100%;
}


/* Küçük telefonlar */
@media (min-width: 480px) {
    .popupContent {
        width: 92%;
        max-width: 420px;
    }
}

/* Tablet / büyük telefon */
@media (min-width: 768px) {
    .popupContent {
        width: 85%;
        max-width: 560px;
    }
}

/* Laptop / desktop */
@media (min-width: 1024px) {
    .popupContent {
        width: 80%;
        max-width: 640px;
    }
}

/* Büyük ekran */
@media (min-width: 1440px) {
    .popupContent {
        width: 70%;
        max-width: 690px;
    }
}
