#seMainMenu {
    width: 70px;
}
#seUniverse {
    grid-template-columns: 70px auto;
}
#seUniverse.visibleMenu #seMainMenu {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}
#seUniverse #seBody {
    grid-column: 1 / 3 !important;
    grid-row: 2 / 3 !important;
    max-width: 100vw;
    margin-left:70px;
}
@media (max-width: 768px) {
    #seUniverse {
        grid-template-columns: 0 auto;
    }
    #seUniverse #seBody{
        margin-left:0;
    }
    #seMainMenu {
        margin-top:70px;
        width: 0;
        height: 0;
    }
    #seHeader {
        z-index: 3;
        width: 100%;
    }
}

.dreamwayLogo {
    font-family: Mukta, sans-serif;
    font-weight: 700;
    gap: 10px;
    font-size: 19px;
    flex-shrink: 1;
    margin-left: 34px;
    height: 70px;
    width: 200px;
    padding-right: 80px !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
    padding-left: 0 !important;
    display:flex;
    align-items:center;
    justify-content:start;
    @media (max-width: 767px) {
        padding-right: 0 !important;
    }
    text-decoration:none !important;
    .dw-text {
        .oya-green {
            color: var(--eo-main-color);
        }
    }
}
#seHeader {
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
    border-bottom: 0;
    height: 70px;
}


a[href="#systemnachrichtenWidget"], #helpLink {
    border-radius: 0;
    background-image: url(/se_data/global/menu2025/icons/message.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    margin: 0 0 0 30px;
    display: inline-flex;
    width: 30px;
    height: 33px;
    &:hover {
        background-image: url(/se_data/global/menu2025/icons/message-hover.svg);
    }
}

.question-icon {
    margin-left: 30px;
    &:hover {
        path {
            fill: var(--eo-main-color) !important;
        }
    }
}

.logout-icon{
    margin-left: 30px;
    &:hover {
        path {
            fill: var(--eo-highlight-warning) !important;
        }
    }
}

#seHeader{
    .horizontal-menu {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: normal;
        flex-wrap: nowrap; /* Verhindert Umbruch */
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling auf iOS */
        list-style: none;
        padding: 0;
        margin: 0;
        white-space: nowrap; /* Text in einer Zeile halten */
        @media (max-width: 767px) {
            overflow: visible;
        }
    }

    .horizontal-menu li {
        flex: 0 0 auto; /* Verhindert, dass Items gestreckt werden */
        a {
            padding: 25px 35px;
            text-decoration: none;
            display: flex;
        }
        &.active {
            border-bottom: 4px solid var(--eo-darker-grey);
            background-color: var(--eo-light-grey);
            a {
                color: var(--eo-darker-grey);
            }
            &:hover {
                background-color: var(--eo-light-grey);
                a {
                    color: var(--eo-darker-grey);
                }
            }
        }
        font-family: Mukta;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        height: 70px;
        box-sizing: border-box;
        &:hover {
            background-color: var(--eo-main-color);
            a {
                color: white;
            }
            &.logo {
                background-color: white;
                a {
                    color: var(--eo-dark-grey);
                }
            }
        }

        @media (max-width: 767px) {
            display: none;
            &.logo{
                margin-left: 70px;
                display: flex;
                .dreamwayLogo {
                    padding-right: 0 !important;
                }
            }
        }
    }

    /* mobile */

}

#seBody #seModuleFunctions{
    display: none;
    margin:0;
}

.menu-overflowing #seBody #seModuleFunctions{
    display: block;
}
.menu-overflowing #seHeader .horizontal-menu li {
    visibility: hidden;
    &.logo{
        visibility: visible;
        display: flex;
    }
}
.menu-overflowing #seHeader .horizontal-menu {
    overflow:hidden;
}


#seHeader .seUseraccount{
    font-family: Mukta, sans-serif;
    font-size: 18px;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: end;
    margin:0;
    height: 70px;
    gap: 5px;
    padding-right: 80px;
    @media (max-width: 768px) {
        padding-right: 20px;
    }

    .header-icon{
        margin:0;
        margin-left: 30px;
        width: 36px;
        height: 32px;
        &.ml15 {
            margin-left: 15px;
        }
    }
}
.userHead {
    height:50px;
    border-radius: 7px;
    padding: 0 15px;
    border: 1px solid var(--eo-dark-grey);
    display: inline-flex;
    flex-shrink: 1;
    align-items: center;
    justify-content: center;
    text-align: center;
    svg {
        padding-left: 12px;
    }
    &:hover {
        border: 1px solid var(--eo-main-color) !important;
        color: var(--eo-main-color) !important;
        path {
            fill: var(--eo-main-color) !important;
        }
    }
    @media (max-width: 768px) {
        &.hideMobile {
            display: none;
        }
    }
}
.logoutIcon {
    .logout-red {
        display: none;
    }
    &:hover {
        .logout-black {
            display: none;
        }
        .logout-red {
            display: block;
        }
    }
    @media (max-width: 768px) {
    &.hideMobile {
        display: none;
    }
}
}