.bdialog-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
}
.bdialog-container {
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    padding: 40px 24px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.bdialog-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #101010;
}
.bdialog-message {
    font-size: 14px;
    font-weight:400;
    color: #505050;
    line-height: 1.5;
    margin-bottom: 30px;
}
.bdialog-footer {
    display: flex;
    gap: 12px;
}
.bdialog-btn {
    flex: 1;
    height: 54px;
    border-radius: 27px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
}
.bdialog-btn:active { opacity: 0.8; }
.bdialog-btn-outline {
    background: #fff;
    color: #1e4a8d;
    border: 1.5px solid #1e4a8d;
}
.bdialog-btn-primary {
    background: #1e4a8d;
    color: #fff;
}
.bdialog-full { width: 100%; flex: none !important; }
