Search-wrap was pinned to the right edge with margin-left: auto.
With Focus chips and Mark-orphans gone from the topbar (previous
commit) it had room to breathe — switch to margin: 0 auto so the
flex's auto margins absorb leftover space symmetrically and the
search lands in the middle.
Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
#search-wrap {
position: relative;
- margin-left: auto;
+ /* Both auto margins absorb the leftover space equally, so the
+ search sits in the middle of the topbar regardless of how much
+ room the back / title / subtitle take on the left. */
+ margin: 0 auto;
width: 460px;
max-width: 60%;
}