I am encountering an issue with customizing the style of a dialog pop-up in my SAP UI5 application. The XML structure of the dialog is as follows:
<core:FragmentDefinition xmlns="sap.m" xmlns:core ="sap.ui.core" xmlns:html="http://www.w3.org/1999/xhtml>"
<Dialog title="Add" class="sapUiPopupWithPadding">
<Input type="Text"/>
<buttons class="buttonsStyle">
<Button text="Save"/>
<Button text="Cancel"/>
</buttons>
</Dialog>
</core:FragmentDefinition>
Despite my attempts to modify the CSS, I consistently achieve the same result illustrated in the provided picture. I am struggling to alter the color and size of the dialog title ("Add") and the background color and font color of the buttons.
Any insights or solutions would be greatly appreciated.