Watermark is Behind Table

Hi,

In our document if we insert Watermark it gets Beyond table whereas for Paragraphs it Works good, only if Table is present Water gets behind table,We expect it to be Above Table.

Note: when we Manually change style of Table then Watermark Automatically gets Above Table.

I tried Changing Style of Table Programmatically it fails, Can you help me to Bring th Watermark Above Table.

I have attached Reference Code and Ouput Document With Expected in it as well For your Reference.Document For Watermark Issue.docx (22.1 KB)
SampleCode for Watermark.docx (16.6 KB)

I used below code to change style which fails with error message that style cannot be applied
TableStyle tableStyle = (TableStyle)builder.Document.Styles.Add(StyleType.Table, “Table Grid Light”);
table.Style = tableStyle;

@NanthiniSenthil123 please consider the following code

Table table = doc.FirstSection.Body.Tables[0];
table.ClearShading();
table.StyleIdentifier = StyleIdentifier.TableGridLight;