/* Ana Overlay (Siyah Perde) */
#testone-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#testone-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Beyaz İçerik Kutusu */
.testone-modal-content {
    background-color: #fff;
    width: 95%; 
    
    /* MASAÜSTÜ İÇİN İDEAL GENİŞLİK */
    max-width: 750px; 
    
    /* MASAÜSTÜ İÇİN YÜKSEKLİK BAŞLANGICI */
    height: auto; 
    max-height: 95vh;

    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    
    display: flex;
    flex-direction: column;
    
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    overflow: hidden; 
}

#testone-modal-overlay.active .testone-modal-content {
    transform: translateY(0);
}

/* Kapatma Butonu (X) */
.testone-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    line-height: 1;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    transition: color 0.2s;
}

.testone-modal-close:hover {
    color: #ee1c25;
}

/* Iframe Alanı */
.testone-iframe-wrapper {
    width: 100%;
    
    /* MASAÜSTÜ SABİT YÜKSEKLİK */
    /* Yan yana durduklarında 580-600px yeterlidir */
    height: 600px;
    
    position: relative;
    z-index: 5;
}

#testone-modal-iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* Yükleniyor Yazısı */
.testone-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #888;
    z-index: 1;
    font-size: 14px;
}

/* --- MOBİL UYUMLULUK (CRITICAL FIX) --- */
@media (max-width: 600px) {
    .testone-modal-content {
        /* Mobilde genişlik tam olsun */
        max-width: 95%; 
        
        /* Mobilde yükseklik ekranın %90'ı olsun (Dinamik Uzama) */
        height: 90vh; 
    }
    
    .testone-iframe-wrapper {
        /* Iframe kapsayıcının tamamını doldursun */
        height: 100% !important; 
    }
}

/* YATAY EKRANLAR İÇİN EKSTRA KORUMA */
@media (max-height: 650px) {
    .testone-modal-content {
        height: 98vh;
        max-height: none;
    }
    .testone-iframe-wrapper {
        height: 100% !important;
    }
}