<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.apache-mb-menu {
    position: relative;
    width: 100%;
}

.menu-header {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    background-color: var(--e-global-color-primary, #E65100);
    color: white;
    min-height: 50px;
}

.menu-left {
    display: flex;
    align-items: stretch;
    flex: 1;
}

.home-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    padding: 0 1em 0 1em;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    /* width: 100px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-title {
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0 0.5em;
    display: flex;
    align-items: center;
    line-height: 1.3em;
    white-space: nowrap;
    overflow: hidden;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: white;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle .menu-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

.menu-toggle.active .menu-icon {
    transform: rotate(180deg);
}

.menu-outer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: white;
    border: 1px solid #eee;
    border-top: none;
}

.menu-outer.open {
    max-height: none;
}

.menu-outer.opening {
    transition: max-height 0.3s ease-in-out;
}

.menu-outer.closing {
    transition: max-height 0.3s ease-in-out;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    border-bottom: 1px solid #eee;
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-list a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 12px 15px;
}

.menu-list a:hover {
    background-color: #f5f5f5;
}</pre></body></html>