/* =========================================================
 * BravoGolf 커스텀 모달 (bgConfirm / bgAlert) 스타일
 * native confirm/alert 대체용
 * ========================================================= */
.bg-confirm-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.bg-confirm-overlay.show {
    display: flex;
}

.bg-confirm-box {
    background: #fff;
    border-radius: 12px;
    width: 85%;
    max-width: 340px;
    padding: 24px 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    overflow: hidden;
}

.bg-confirm-title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    text-align: center;
}

.bg-confirm-msg {
    font-size: 15px;
    color: #555;
    text-align: center;
    line-height: 1.5;
    padding-bottom: 20px;
    word-break: keep-all;
}

.bg-confirm-btns {
    display: flex;
    border-top: 1px solid #e5e5e5;
    margin: 0 -20px;
}

.bg-confirm-btns button {
    flex: 1;
    border: none;
    background: #fff;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.bg-confirm-cancel {
    color: #888;
    border-right: 1px solid #e5e5e5;
}

.bg-confirm-ok {
    color: #1a73e8;
    /* BravoGolf 메인 블루 */
}

.bg-confirm-btns button:active {
    background: #f5f5f5;
}
