How can i remove/recolor/change border-radius of this encircled element of headerView?

Current css for tableWidget:
Qt Code:
  1. border : 0.5px solid gray;
  2. border-radius : 25px;
  3. }
  4. QHeaderView::section:first {
  5. background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
  6. stop:0 #616161, stop: 0.5 #505050,
  7. stop: 0.6 #434343, stop:1 #656565);
  8. color: white;
  9. border: 1px solid #6c6c6c;
  10. border-radius : 25px;/*does not work*/
  11. padding-left: 4px;
  12. margin-left : 25px;
  13. }
To copy to clipboard, switch view to plain text mode