.push-notification-prompt {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-width: 350px;
    z-index: 10000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.prompt-content h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.prompt-content p {
    margin: 0 0 15px 0;
    color: #666;
}

.prompt-actions {
    display: flex;
    gap: 10px;
}

.prompt-actions button {
    flex: 1;
}