Radzen DataGrid Remove Cell Padding

Hello,

I want to build a WindowsForms like DataGridView Control with the Radzen DataGrid. The WindowsForms DataGrid has no spaces between the Cells. I mean those Spaces between the template (a TextBox) and the Border of the Cell seen in the following picture.

How can i get rid of them. In principal i think it is some kind of padding.

When i use

void CellRender(Radzen.DataGridCellRenderEventArgs args)
{
if (args.Column.Property == "Text")
{

        args.Attributes.Add("style", $"padding: 0; margin:0; background: #0b0b0b");
    
    }
          
}

I am able to remove the left and right padding, put not the top and bottom padding.

In this picture i gave the cell a black color to see the area of the cell.

Thanks,

Bastian

Ok, finally i fixed it with the inclusion of

.rz-grid-table td {
padding:0!important;
}

in my app.css file in a Blazor Webassembly app. It looks like this together with removed padding of the cells from above an border-radius of the textbox set to 0:

Best regards,

Bastian