.expandable-icon img {
    height: 2rem;
    cursor: pointer;
    background-color: inherit;
    position: relative;
}

.navigation__popover {
    background-color: var(--header-background);
    inset: unset;
    top: var(--header-height);
    left: 0;
}

.navigation__entries {
    list-style-type: none;
    background-color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    margin: 0;
}

.navigation-menu {
    position: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}

@container (min-width: 70em) {
    .expandable-icon { pointer-events: none; }

    .navigation__popover { display: contents; }

    .navigation__entries {
        flex-direction: row;
        gap: 1.5rem;
    }
}

@supports not (anchor-name: test) {
    #send-popover {
        left: 8em;
    }

    @container (min-width: 70em) {
        #send-popover {
            left: 22em;
        }
    }
}
