.bj-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* 배경 어둡게 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* 제일 위에 뜨도록 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.bj-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.bj-modal-box {
    background: #fff;
    width: 90%;
    max-width: 400px; /* PC에서는 너무 크지 않게 */
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.bj-modal-overlay.show .bj-modal-box {
    transform: translateY(0);
}

.bj-modal-msg {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 25px;
    word-break: keep-all; /* 한글 단어 잘림 방지 */
    font-weight: 500;
}

.bj-modal-btn {
    background-color: #333; /* 버튼 색상 (원하는 색으로 변경 가능) */
    color: #fff;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.bj-modal-btn:active {
    transform: scale(0.98);
}