.oidc_login_btn {
    font-weight: 400;
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    margin-top: 5px;
    margin-bottom: 5px;
}

.oidc_logout_link {
    font-weight: 400;
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
}

/* A11y helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ensure the header container doesn't clip the dropdown */
header, .header, .topbar, .nav, .navigation {
    overflow: visible;
}

/* Wrapper: keep menu anchored to the button */
.oidc_menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    transform: none !important;
}

/* Hamburger button like your screenshot: square, light border, centered icon */
.oidc_menu__toggle {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    border: 1px solid rgba(0,0,0,.35);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-size: 18px;
    box-shadow: 0 1px 0 rgba(0,0,0,.08);
    border-radius: var(--umbraco-input-border-radius-xs)
}

.oidc_menu__icon {
    font-size: 15px;
    line-height: 1;
    pointer-events: none;
}

    .oidc_menu__toggle:hover {
          opacity: 0.7;
    }

    .oidc_menu__toggle:focus {
        outline: 2px solid rgba(255,255,255,.8);
        outline-offset: 2px;
    }

/* Dropdown panel: hard reset + on-top */
.oidc_menu__panel {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    display: block;
    width: max-content;
    min-width: 180px;
    background: #fff !important;
    color: #000 !important;
    opacity: 1 !important;
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
    padding: 6px 0;
    margin: 0;
    z-index: 2147483647;
    isolation: isolate;
    border-radius: var(--umbraco-input-border-radius-xs)
}

/* Menu items: block, padded, hover state (override inherited link styles) */
.oidc_menu__item {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    margin: 0;
    background: transparent !important;
    color: #000 !important;
    opacity: 1 ;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
    font-size: 14px;
    font-weight: 600;
    height: auto !important;
    min-height: 0 !important;
}

    .oidc_menu__item:hover,
    .oidc_menu__item:focus {
 
        opacity: 0.7;
    
        outline: none;
    }

    /* Divider */
    .oidc_menu__item + .oidc_menu__item {
        border-top: 1px solid rgba(0,0,0,.06);
    }

/* If theme applies fixed heights to all children inside panels */
.oidc_menu__panel > * {
    height: auto !important;
}

form {
    margin-bottom: unset;
}

.oidc_menu__panel {
    display: none;
}

.oidc_menu.is-open .oidc_menu__panel {
    display: block;
}

.order-menu-mobile{
    .mx-4{
        margin-right: unset !important;
        margin-left: unset !important
    }
    .oidc_menu{
        width: 100%;
        .oidc_menu__toggle{
            position: absolute;
            top: -41px;
            right: 0;
        }
    }


}
