.fbah-soft-prompt {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
    max-width: 380px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(79, 70, 229, .35);
    transform: translateY(140%);
    transition: transform .4s cubic-bezier(.22, .68, .35, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    color: #fff;
}

.fbah-soft-prompt[data-shown="1"] {
    transform: translateY(0);
}

.fbah-soft-prompt__inner {
    padding: 20px 22px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon title"
        "icon body"
        ".    actions";
    column-gap: 14px;
    row-gap: 8px;
}

.fbah-soft-prompt__icon {
    grid-area: icon;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    color: #fff;
    opacity: .95;
}

.fbah-soft-prompt__title {
    grid-area: title;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.fbah-soft-prompt__body {
    grid-area: body;
    font-size: 14px;
    line-height: 1.45;
    opacity: .92;
}

.fbah-soft-prompt__actions {
    grid-area: actions;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 6px;
}

.fbah-soft-prompt__btn {
    padding: 9px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    transition: opacity .15s, transform .1s;
}

.fbah-soft-prompt__btn:active {
    transform: scale(.97);
}

.fbah-soft-prompt__btn--no {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .55);
}

.fbah-soft-prompt__btn--no:hover {
    background: rgba(255, 255, 255, .1);
}

.fbah-soft-prompt__btn--yes {
    background: #fff;
    color: #4f46e5;
}

.fbah-soft-prompt__btn--yes:hover {
    opacity: .92;
}

@media (max-width: 480px) {
    .fbah-soft-prompt {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 12px;
        border-radius: 14px;
    }
    .fbah-soft-prompt__inner {
        padding: 18px 18px;
    }
}
