.wc-bd-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wc-bd-popup {
    background: #ffffff;
    max-width: 420px;
    width: 90%;
    padding: 20px 20px 16px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    position: relative;
    text-align: right;
}
.wc-bd-popup-title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}
.wc-bd-popup-content {
    font-size: 14px;
    margin-bottom: 14px;
}
.wc-bd-popup-actions {
    text-align: left;
}
.wc-bd-popup-button {
    min-width: 140px;
}
.wc-bd-popup-close {
    position: absolute;
    left: 10px;
    top: 6px;
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}
@media (max-width: 480px) {
    .wc-bd-popup {
        max-width: 95%;
        padding: 16px;
    }
}
