﻿/* Popup overlay arka planı */
.ozco-popup-overlay {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.7);
    z-index: 99999;
}


/* Popup içeriği */
.ozco-popup-content {
    position: relative;
    background-color: #fff;

    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    max-height: 110%;
    overflow: auto;
    animation: fadeInScale 0.3s ease-in-out;
}

    /* Popup resmi responsive hale getir */
    .ozco-popup-content img {
        max-width: 100vw;
        max-height: 100vh;
        width: auto;
        height: auto;
        display: block;
        margin: auto;
    }

/* Kapatma butonu (X işareti) */
.ozco-popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 54px;
    color: red;
    cursor: pointer;
    transition: color 0.2s ease;
}

    .ozco-popup-close:hover {
        color: #d00;
    }

/* Açılış animasyonu */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobil cihazlar için uyarlama */
@media (max-width: 576px) {
    .ozco-popup-content {
        padding: 10px;
    }

    .ozco-popup-close {
        top: 4px;
        right: 8px;
        font-size: 20px;
    }
}
