.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* 기본적으로 숨김 */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-container {
    background-color: white;
    /*padding: 20px;*/
    /*border-radius: 10px;*/
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 90%;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    position: relative;
    padding-bottom: 30px; /* 페이지네이션 공간 확보 */
}

.swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}


.swiper-wrapper {
    display: flex; /* 기본적으로 flex로 설정 */
    align-items: center; /* 슬라이드 높이 정렬 */
}

.swiper-slide {
    flex-shrink: 0;
    width: auto;
    text-align: center;
}

.swiper-slide img {
    max-width: 100%;
    height: 70vh;
    object-fit: contain;
}

.popup-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.popup-footer button {
    border: none;
    background-color: #007aff;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.popup-footer button:hover {
    background-color: #0056b3;
}

.swiper-slide br {
    display:none;
}
.swiper-slide p {
    margin:0;
}
