#top-nav-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    color: var(--text-color-01);
    padding: 5px;
    border-bottom: 2px solid var(--border-color-01);
    margin-bottom: 16px;
}

.corner-menu {
    position: absolute;
    padding: 0;
    border: 4px var(--border-color-01) solid;
    background-color: var(--bg-color-01);
    transition: transform 0.5s;
    display: flex;
}
.corner-menu-main-sectioned {
    padding: 0;
    position: relative;
}
.corner-menu-main {
    padding: 8px;
    position: relative;
}

#TL-corner-menu {
    top: 0;
    left: 0;

    flex-direction: row;
    align-items: flex-start;
    border-top: none;
    border-left: none;
}
#TL-corner-main {
    display: flex;
    flex-direction: row;
}
.TL-corner-main-item {
    padding: 8px;
    border-right: 4px var(--border-color-01) solid;
}
.TL-corner-main-item:last-child {
    border-right: none;
}

.corner-menu-aside {
    position: relative;
}
.corner-showhide-tab {
    position: absolute;
}
.corner-showhide-botton {
    border: 4px var(--border-color-01) solid;
    background-color: var(--bg-color-01);
    color: var(--text-color-01);
    padding: 4px;
    font-weight: bold;
    width: max-content;
    font-size: 1rem;
    cursor: pointer;
}
#TL-corner-aside-showhide-tab {
    left: 0;
}
#TL-corner-aside-showhide-button {
    border-top: none;
}

#TR-corner-menu {
    top: 0;
    right: 0;

    border-top: none;
    border-right: none;
    flex-direction: row-reverse;
    align-items: flex-start;
}
#TR-corner-main {
    display: flex;
    flex-direction: column;
}
#TR-corner-aside-showhide-tab {
    right: 0;
}
#TR-corner-aside-showhide-button {
    border-top: none;
}

#BR-corner-menu {
    bottom: 0;
    right: 0;

    border-bottom: none;
    border-right: none;
    flex-direction: column-reverse;
    align-items: flex-end;
}
#BR-corner-aside-showhide-tab {
    right: 0;
    bottom: 0;
}
#BR-corner-aside-showhide-button {
    border-right: none;
}

#BL-corner-menu {
    bottom: 0;
    left: 0;

    border-bottom: none;
    border-left: none;
    flex-direction: column-reverse;
    align-items: flex-start;
}
#BL-corner-aside-showhide-tab {
    left: 0;
    bottom: 0;
}
#BL-corner-aside-showhide-button {
    border-left: none;
}

.corner-menu a {
    color: var(--link-color-01);
}

#navbar-title {
    justify-self: center;
    margin: 0;
}
#navbar-username {
    display: flex;
    gap: 8px;
    flex-direction: row;
    align-items: center;
}

#navbar-others {
    display: flex;
    flex-direction: row;
    margin-top: 8px;
    gap: 8px;
    justify-content: flex-end;
}

.navi-header {
    margin: 0;
    font-weight: bold;
}

#cytoscape-extensions-button {
    margin-bottom: 4px;
}
#cytoscape-credits-dialog a {
    color: #0000EE;
}

.corner-menu-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}