:root {
    --selected-border-size: 6px;
}

#navbar {
    background-color: var(--bg-color);
    font-size: 1.4em;
    width: 100%;
    overflow: auto;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    border-bottom: 1px solid var(--main-color);
}

.navbarSection {
    display: flex;
    align-items: center;
    margin-left: 8px;
    margin-right: 8px;
}

#navbar a {
    color: var(--main-color);
    /* Padding on both sides makes underline wider */
    padding-left: 10px;
    padding-right: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

#navbar .current {
    border-bottom: var(--selected-border-size);
    border-bottom-color: var(--main-color);
    border-bottom-style: solid;
    /* Empty top border to fix text adjustment */
    border-top: var(--selected-border-size);
    border-top-color: #00000000;
    border-top-style: solid;
}

#navbar .currentEmpty{
    border-bottom: var(--selected-border-size);
    border-bottom-color: #00000000;
    border-bottom-style: solid;
    /* Empty top border to fix text adjustment */
    border-top: var(--selected-border-size);
    border-top-color: #00000000;
    border-top-style: solid;
}

#navbar svg {
    width: 32px;
    height: 32px;
    fill: var(--main-color);
}