/* Modal 공통 영역 */
.common-modal-wrap.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 6;
}
.common-modal-wrap .modal {
    max-width: 90%;
}
.common-modal-wrap .modal .close-btn{
    cursor: pointer;
    width: 36px;
    margin-left: auto;
    margin-bottom: 10px;
}
.border-radius{
    background: white;
    padding: 4px;
    border-radius: 12px;
}
.common-modal-wrap .modal img {
    display: block;
    max-width: 100%;
    height: auto;
}
/* Swiper styles */
.common-modal-wrap .modal .swiper {
    width: 100%;
    height: 100%;
    max-width: 468px;
}

.common-modal-wrap .modal .swiper .swiper-slide {
    text-align: center;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/*스와이프 페이지네이션 도트 색상 변경 */
.common-modal-wrap .modal .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #EE3823; /* 활성화된 도트 색상 */
}
