#banner_online {
    height: 700px;
    width: 620px;
    border: 1px solid black;
    box-shadow: 3px 3px 7px 1px grey;
    background-color: white;
    z-index: 9999;
    margin-left: 10%;
    margin-top: 6%;
    display: none;
    position: fixed;
    top: 30%;
    left: 55%;
    transform: translate(-70%, -50%); /* 정확히 가운데 정렬 */
    max-height: 80vh; /* 브라우저 높이의 80% 제한 */
    overflow-y: auto; /* 내용이 넘칠 경우만 세로 스크롤 */
}
    /* 제목 */
    #banner_online h2 {
        text-align: center;
        font-size: 17px;
        margin-bottom: 10px;
    }

    #banner_online p .second {
        margin-left: 6px;
    }

/* 닫기 버튼 */
#close_button, #close_button2 {
    text-align: right;
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    cursor: pointer;
}

.pop_content {
    font-size: 13px;
    margin-left: 20px;
}

#banner_online_how {
    height: 78px;
    width: 444px;
    margin-left: 28px;
    border: 1px solid #82bf77;
    margin-top: 22px;
}

    #banner_online_how h3 {
        font-size: 12px;
        margin-left: 6px;
        margin-top: 16px;
    }

#close_button {
    float: right;
    margin-top: -3px;
}

#close_button2 {
    float: right;
    margin-top: -3px;
}

.p_bottom {
    margin-left: 30px;
}

#modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
}
/* 소제목 */
.notice-title {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}
/* 설명 본문 */
.description {
    margin-bottom: 10px;
}

    /* 이모지 글자 정렬 */
    .description br + br {
        margin-bottom: 10px;
    }


table.notice-table {
    width: 90%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

    table.notice-table th,
    table.notice-table td {
        border: 1px solid #444;
        padding: 8px 10px;
        text-align: left;
        vertical-align: top;
    }

    table.notice-table th {
        background-color: #e6f0fa;
        font-weight: bold;
    }



/* 반응형 대응 */
@media screen and (max-width: 600px) {
    #banner_online {
        padding: 15px;
        font-size: 14px;
    }

    #banner_online {
        height: 700px;
        width: 100%;
        border: 1px solid black;
        box-shadow: 3px 3px 7px 1px grey;
        background-color: white;
        z-index: 9999;
        margin-left: 10%;
        margin-top: 6%;
        display: none;
        position: fixed;
        top: 30%;
        left: 60%;
        transform: translate(-70%, -50%); /* 정확히 가운데 정렬 */
        max-height: 80vh; /* 브라우저 높이의 80% 제한 */
        overflow-y: auto; /* 내용이 넘칠 경우만 세로 스크롤 */
    }

        #banner_online h2 {
            font-size: 16px;
        }

    .notice-title {
        font-size: 15px;
    }

    .description {
        padding: 8px 10px;
    }

    #close_button, #close_button2 {
        font-size: 13px;
    }
}
