@Morganga It’s not working because width is calculated dynamically and affecting the margin. You can changed the width offset to adjust it using custom.css. See below.
body { width: calc(100% - 250px); }Adjust the value of 250px for your need.
Before
b4
After
after