﻿/* 전체 레이어 */
.popup-layer {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

/* 어두운 배경 */
.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* 팝업 본체 */
.popup-container {
    position: relative;
    width: 50vh;
    min-width: 400px;
    max-height: 80vh;
    margin: 5vh auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .popup-container {
        width: 95%;
        height: 90vh;
        margin: 5vh auto;
    }
}

/* 닫기 버튼 */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* 슬라이드 */
.swiper-slide {
    position: relative;
    padding: 10px;
}

    /* 제목 */
    .swiper-slide h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

/* 내용 스크롤 */
.popup-content {
    max-height: 50vh;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.6;
    padding-top: 40px;
}

/* 제목 중앙 */
.popup-title {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 80%;
}

/* 체크박스는 우측 상단 유지 */
.today-checkbox-wrap {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 13px;
}
