/* src/styles/components/shared/topbar.css
   Shared topbar structure and behaviour
   – Sticky positioning
   – Inner flex layout with container
   – Toggle button placement
   – Z‑index layering
*/

.topbar {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
    border-bottom: 1px solid
    color-mix(in srgb, var(--color-surface-muted) 20%, transparent);
    background: transparent;
}

.topbar__meu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: transparent;
    border: 1px solid
    color-mix(in srgb, var(--color-surface-muted) 20%, transparent);
    cursor: pointer;
}