Today there is way too much drama in the box. I was looking for grid help, or conversation. So. If you want to remove "the box"... use greasemonkey/tampermonkey. Create a script for this site. Add...
//
@require https://code.jquery.com/jquery-3.6.0.min.js
under 'grant' at the top.
THEN. add this:
(function() {
'use strict';
$( '.panel-heading:contains(" The Box ")' ).parent().remove();
})();