.admissions-popup-overlay-4736 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.admissions-popup-overlay-4736.is-visible {
    opacity: 1;
}

.admissions-popup-content-4736 {
    background-color: transparent; /* Changed to transparent for image-only popup */
    padding: 0; /* Removed padding */
    border-radius: 8px; /* Slightly smaller radius for the image */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    max-width: 600px; /* Adjusted max-width for image aspect ratio */
    width: 90%;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.admissions-popup-overlay-4736.is-visible .admissions-popup-content-4736 {
    transform: translateY(0) scale(1);
}

.admissions-popup-close-4736 {
    position: absolute;
    top: -15px; /* Positioned outside the image container slightly */
    right: -15px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10;
}

.admissions-popup-close-4736:hover {
    background-color: #f0f0f0;
    transform: rotate(90deg);
}

.admissions-popup-image-link-4736 {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.admissions-popup-image-4736 {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.admissions-popup-image-link-4736:hover .admissions-popup-image-4736 {
    transform: scale(1.02); /* Slight zoom effect on hover */
}
