/* 이미지 스타일 */
.ImagePopup {
    cursor: pointer;
    transition: transform 0.3s;
}

.ImagePopup:hover {
    transform: scale(1.1);
}

/* 팝업 이미지 레이어 */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup img {
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.2s ease;
}

.popup.show img {
    transform: scale(1);
}

.popup img {
    transform: scale(0.9);
}