/* 팝업 전체 */
.notice-popup {
    display: none;
}

.notice-popup.show {
    display: block;
}

/* 배경 어둡게 */
.notice-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 999;
}

/* 팝업 박스 */
.notice-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* 제목 */
.notice-title {
    font-size: 20px;
    margin-bottom: 10px;
}

/* 내용 */
.notice-content {
    font-size: 14px;
    margin-bottom: 20px;
}

/* 하단 영역 */
.notice-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 버튼 */
.notice-buttons button {
    padding: 6px 12px;
    background: #4da3ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.notice-buttons button:hover {
    background: #2f80ed;
}