@charset "utf-8";
/* 팝업 레이어 (오버레이) */
#main_popup_layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    /* JS로 제어 */
    justify-content: center;
    align-items: center;
}
/* 팝업 박스 (전체 틀) */
.popup_box {
    position: relative;
    width: 600px;
    max-width: 90%;
    background-color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
    font-family: 'Noto Sans KR', sans-serif;
}
/* 헤더 영역 */
.popup_header {
    background-color: #00306b;
    padding: 15px 0;
    text-align: center;
}
.popup_header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}
/* 바디 영역 (배경 이미지 적용) */
.popup_body {
    background: #eef2f5 url('../img/popup_bg.png') no-repeat top;
    background-size: cover;
    padding: 30px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}
/* 내부 흰색 카드 (텍스트 영역) */
.popup_inner_card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 25px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 360px;
}
.popup_inner_card .notice_tit {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}
.popup_inner_card .notice_txt {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    word-break: keep-all;
    text-align: left;
}
.popup_inner_card .notice_txt p {
    margin-bottom: 10px;
}
.popup_inner_card .notice_link {
    display: inline-block;
    border-bottom: 1px solid #007bff;
    padding-bottom: 2px;
}
.popup_inner_card .notice_link a {
    color: #007bff;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    word-break: break-word;
}
/* 하단 닫기 바 */
.popup_bottom {
    background-color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #fff;
    border-top: 1px solid #ddd;
}
.popup_bottom label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.popup_bottom input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}
.popup_bottom .btn_close {
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}