
.notice-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

}

/* 팝업 */
.notice-popup {
    position: relative;
    width: 400px;
    max-width: 90%;
    background: #ffffff;
    border-radius: 10px;
    padding: 45px 35px 21px;
    text-align: center;

}

/* 공사 삼각형 아이콘 */
.notice-icon {
    width: 0;
    height: 0;
    margin: 0 auto 18px;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 32px solid #ff8c00; /* 주황색 */
    position: relative;
}

.notice-icon::after {
    content: "!";
    position: absolute;
    left: -3px;
    top: 11px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* 제목 */
.notice-popup h2 {
    font-size: 21px;
    font-weight: 700;
    color: #0b2a5a;
    margin-bottom: 18px;
}


.notice-popup p {
    font-size: 16.5px;
    color: #333;
    line-height: 1.65;
    margin-bottom: 12px;
}

.notice-date {
    margin: 22px 0;
    color: #0b2a5a;
}

.notice-date span {
    font-size: 13px;
    color: #6b778c;
}

.notice-footer {
    font-size: 14px;
    color: #555;
}

.notice-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: none;
    font-size: 22px;
    color: #8a95a5;
    cursor: pointer;
}

.notice-btn {
    margin-top: 26px;
    border-radius: 6px;
    border: 1px solid #1f4fd8;
    background: #1f4fd8;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.notice-btn:hover {
    background: #163db3;
}
.notice-actions {
    display: flex;
    margin-top: 26px;
    border-top: 1px solid #e5e7eb;
}

.notice-btn {
    flex: 1;
    padding: 7px 0;
    font-size: 14px;
    border: none;
    cursor: pointer;
    background: none;
}

/* 왼쪽 버튼 */
.notice-btn.secondary {
    color: #ff8c00;
    border-right: 1px solid #e5e7eb;
    font-weight: bold;
    font-size: 16px;
}

.notice-btn.secondary:hover {
    background: #f5f6f8;
}

/* 오른쪽 버튼 */
.notice-btn.primary {
    /*color: #1b45bc;*/
    color  : #0b2a5a;
    font-weight: bold;
    font-size: 16px
}

.notice-btn.primary:hover {
    background: #f0f4ff;
}

