/* ✅ 팝업 컨테이너 (전체 배경) */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

/* ✅ 팝업 내용 스타일 */
.popup-content {
    background: white;
    width: 400px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* ✅ 팝업 헤더 */
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* ✅ 닫기 버튼 스타일 */
.popup-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: red;
}

/* ✅ 팝업 내용 */
.popup-body img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

/* ✅ 팝업 푸터 */
.popup-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

/* ✅ "오늘 하루 보지 않기" 버튼 스타일 */
#popupDontShowTodayBtn {
    background-color: #4e73df;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* ✅ "닫기" 버튼 스타일 */
.popup-close-btn {
    background-color: #dc3545;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
