I've been struggling to customize the primeNG paginator in my Angular application. Specifically, I am trying to style the dropdown that lets users select the number of data entries. Despite my efforts to figure it out, I have not been successful in styling it the way I want.
<p-paginator styleClass="customPrime" [first]="first" [rows]="rows" [totalRecords]="120" [rowsPerPageOpitons]="[10,20,30]"/>
I attempted using :host and ::ng-deep along with my styleClass, but unfortunately, it did not yield the desired results.