.push-notif-prompt {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 999999;
}

.push-notif-box {
    pointer-events: auto;
    max-width: 680px;
    width: calc(100% - 24px);
    background: #111;
    color: #fff;
    border-radius: 14px;
    margin: 0 12px 12px;
    padding: 14px 14px 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.push-notif-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    direction: rtl;
    text-align: right;
}

.push-notif-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    direction: rtl;
}

.push-notif-btn {
    border: 1px solid rgba(255,255,255,.25);
    background: transparent;
    color: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.push-notif-btn:hover {
    background: rgba(255,255,255,.1);
}

.push-notif-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.push-notif-btn-primary {
    background: #2b6cff;
    border-color: #2b6cff;
}

.push-notif-btn-primary:hover {
    background: #1a5ce6;
}

.push-notif-status {
    font-size: 12px;
    opacity: .85;
    margin-right: auto;
}
