RadzenDataGrid - Row Height Question?

Hi,
Is there any way to make row height even smaller than compact density? I tried adding height to the CSS but no change in row height at less than 56px. Am I doing something wrong?

rz-data-row {
   height: 15px !important;
}

Your selector is missing a dot before rz-data-row. It should be like this

.rz-data-row {
   height: 15px !important;
}

Still the same, maybe something is blocking it in the CSS.

Changed some CSS and worked, thank you.

.rz-grid-table td .rz-cell-data {
        font-size: 10px;
    }
    
    .rz-data-row {
            height: 11px !important;
        }
    td {
        padding-top: 1px !important;
        padding-bottom: 1px !important;
    }