If you install this theme component, you can target user groups with CSS:
like this:
body.group-<your-group-name> .some-page-element-class {
display: none;
}
without the component, you can also use:
.something {
display: none;
}
.staff .something {
display: block;
}