.my-bo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: none;
    z-index: 9999;
}

.my-bo-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    max-width: 520px;
    width: calc(100% - 32px);
    padding: 18px;
    display: none;
    z-index: 10000;
}

.my-bo-modal h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.my-bo-row {
    margin: 12px 0;
}

.my-bo-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.my-bo-row input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.my-bo-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 14px;
}

.my-bo-note {
    font-size: 13px;
    opacity: .8;
}

.my-bo-success {
    display: none;
}

.my-bo-error {
    display: none;
    color: #b00020;
    margin-top: 10px;
}