// Create a new <style> tag
const newStyleTag = document.createElement('style');
// Add the CSS rule
newStyleTag.textContent = '.cobuild .sense { margin-left: 0 !important; }';
// Append the <style> tag to the document's head
document.head.appendChild(newStyleTag);