.sf-web-push-prompt {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
    display: flex;
    width: min(410px, calc(100vw - 32px));
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(127, 127, 127, 0.22);
    border-radius: 16px;
    background: var(--bs-body-bg, #fff);
    color: var(--bs-body-color, #252525);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.sf-web-push-prompt__icon {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 12px;
    background: rgba(44, 120, 108, 0.12);
    font-size: 22px;
}

.sf-web-push-prompt__content {
    min-width: 0;
}

.sf-web-push-prompt__title {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.35;
}

.sf-web-push-prompt__description {
    margin: 0 0 12px;
    color: inherit;
    font-size: 13px;
    line-height: 1.55;
    opacity: 0.75;
}

.sf-web-push-prompt__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sf-web-push-prompt__enable,
.sf-web-push-prompt__dismiss {
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.sf-web-push-prompt__enable {
    border: 1px solid #2c786c;
    background: #2c786c;
    color: #fff;
}

.sf-web-push-prompt__dismiss {
    border: 1px solid rgba(127, 127, 127, 0.28);
    background: transparent;
    color: inherit;
}

.sf-web-push-prompt__enable:disabled,
.sf-web-push-prompt__dismiss:disabled {
    cursor: wait;
    opacity: 0.65;
}

.sf-web-push-prompt__error {
    margin: 10px 0 0;
    color: #c62828;
    font-size: 12px;
    line-height: 1.45;
}

.sf-web-push-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 100000;
    display: flex;
    width: min(380px, calc(100vw - 32px));
    flex-direction: column;
    gap: 4px;
    padding: 15px 17px;
    border: 1px solid rgba(127, 127, 127, 0.22);
    border-radius: 13px;
    background: var(--bs-body-bg, #fff);
    color: var(--bs-body-color, #252525);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    text-align: left;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.sf-web-push-toast--visible {
    opacity: 1;
    transform: translateY(0);
}

.sf-web-push-toast strong {
    font-size: 14px;
    line-height: 1.4;
}

.sf-web-push-toast span {
    font-size: 13px;
    line-height: 1.45;
    opacity: 0.75;
}

@media (max-width: 575px) {
    .sf-web-push-prompt {
        right: 16px;
        bottom: 16px;
    }

    .sf-web-push-toast {
        top: 16px;
        right: 16px;
    }
}


.sf-web-push-prompt__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    overflow: hidden;
    border-radius: 14px;
}

.sf-web-push-prompt__icon-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}