.ra-push-card {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.ra-push-card h2 {
    margin: 0 0 5px;
    font-size: 1.05rem;
}

.ra-push-card p {
    margin: 0;
}

.ra-push-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.ra-push-status[data-state="success"] {
    color: #157347;
}

.ra-push-status[data-state="warning"] {
    color: #9a6700;
}

.ra-push-status[data-state="error"] {
    color: #b42318;
}

.ra-push-banner {
    position: fixed;
    z-index: 1200;
    left: max(14px, env(safe-area-inset-left));
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(82px + env(safe-area-inset-bottom));
    max-width: 560px;
    margin: 0 auto;
    padding: 14px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .22);
    border: 1px solid rgba(15, 23, 42, .1);
}

.ra-push-banner[hidden] {
    display: none !important;
}

.ra-push-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ra-push-banner strong,
.ra-push-banner span {
    display: block;
}

.ra-push-banner span {
    margin-top: 3px;
    font-size: .86rem;
    color: #64748b;
}

@media (max-width: 640px) {
    .ra-push-card,
    .ra-push-banner-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .ra-push-actions {
        justify-content: flex-start;
    }

    .ra-push-banner .btn {
        width: 100%;
    }
}

@media (prefers-color-scheme: dark) {
    .ra-push-banner {
        background: #111827;
        border-color: rgba(255,255,255,.12);
    }

    .ra-push-banner span {
        color: #cbd5e1;
    }
}
