Change background color of the specific popup block

Add the code below to Custom CSS field on your Popup widget’s Settings tab:

[class*="Block__BaseBlock-sc"]:nth-child(1) {
background-color: rgb(0,0,0) !important;
}

In brackets, nth-child(1) set the number of the required block (counting from top to bottom).