/* Remove the user toolbar from the flex layout when it contains the Login button */
.app-layout__editor-toolbar-container > .user-toolbar:has(> button:not(.user-toolbar__dropdown-trigger)) {
    display: none;
}

/* Remove empty toolbar button groups so they do not create unnecessary flex gaps */
.app-layout__editor-toolbar-container > .flex.items-center.gap-1:empty {
    display: none;
}
