@import url('helvetica.css');

#wide-layout.topbar {
    font-family: 'Helvetica-Mono', Arial, sans-serif;
    width: 100%;
    height: 40px; /* Höhe der Topbar */
    background-color: #1a1a1a; /* Hintergrundfarbe der Topbar */
    color: #e0e0e0; /* Textfarbe */
    display: flex;
    align-items: center;
    box-shadow: #1a1a1a;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    /*display: none; */
}
.topbar a {
    font-family: 'Helvetica-Mono', Arial, sans-serif;
    color: #e0e0e0; /* Textfarbe der Links */
    text-decoration: none;
    padding: 0 10px;
}
.topbar .left {
margin-left: 20px;
}
.topbar .center {
    margin: 0 auto;
}
.topbar a:hover {
    text-decoration: underline;
    color: #e0e0e0;
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    text-align: center;
}

html {
    margin-top: 40px;
}

.topbar .menu{
    cursor: pointer;
    user-select: none;
}

#compact-layout.topbar {
    font-family: 'Helvetica-Mono', Arial, sans-serif;
    width: 100%;
    height: 60px; /* Höhe der Topbar */
    background-color: #1a1a1a; /* Hintergrundfarbe der Topbar */
    color: #e0e0e0; /* Textfarbe */
    display: flex;
    align-items: center;
    box-shadow: #1a1a1a;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    /*display: none; */
}


.menu-icon {
    transition: transform 0.3s;
}
.menu-icon.rotated {
    transform: rotate(90deg);
}


@media (max-aspect-ratio: 1/1) {
    html {
        margin-top: 60px;
    }
}
