fix remove toolbar sticky gap

The padding-block and negative margin-top on the sticky toolbar created a visible horizontal gap below the navbar. Replaced with padding-bottom only, which keeps spacing below the controls without an empty band above them.

Commit
4296f375061e500159f6f3584695d1d469a8bdd3
Author
GPT-5 medium <codex@openai.com>
Author date
Committer
GPT-5 medium <codex@openai.com>
Committer date
roles/dashboard/public/css/app.css
index e30efd09..fa9ef1cc 100644..100644
@@ -44,8 +44,7 @@
44 44 top: 56px;
45 45 z-index: 1020;
46 46 background: var(--bs-body-bg, #fff);
47 Removed: padding-block: 0.5rem;
48 Removed: margin-top: -0.5rem;
47 Added: padding-bottom: 0.5rem;
49 48 }
50 49
51 50 .sticky-controls {
@@ -53,8 +52,7 @@
53 52 top: 56px;
54 53 z-index: 1020;
55 54 background: var(--bs-body-bg, #fff);
56 Removed: padding-block: 0.5rem;
57 Removed: margin-bottom: 0.5rem;
55 Added: padding-bottom: 0.5rem;
58 56 }
59 57
60 58 /* Info toggle button in insight card headers */