#sinav-koleji-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.72);
    box-sizing: border-box;
}

#sinav-koleji-overlay.is-hidden {
    display: none;
}

body.sinav-koleji-open {
    overflow: hidden;
}

.sinav-koleji-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: min(90vw, 720px);
    max-height: 92vh;
}

.sinav-koleji-card img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(92vh - 72px);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

#sinav-koleji-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #E30613;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

#sinav-koleji-close.is-visible {
    display: flex;
}

#sinav-koleji-close i {
    font-size: 26px;
}

#sinav-koleji-close:hover,
#sinav-koleji-close:focus {
    background: #c10510;
    outline: none;
}

@media (max-width: 576px) {
    .sinav-koleji-card img {
        max-height: calc(88vh - 72px);
    }
}
