toolbar{
    display: flex;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    background-color: #2B3F60;
    z-index: 100;
}
body.darkmode toolbar{
    background-color: #1c2739;
}
toolbar .content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: inherit;
    padding: 14px;
    width: 100%;
}
toolbar .left,
toolbar .right{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: inherit;
    width: fit-content;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    gap: 16px;
    opacity: 0.64;
}
toolbar:hover .left,
toolbar:hover .right{
    opacity: 1;
}
toolbar img{
    height: 16px;
    width: 16px;
    filter: invert(1);
    cursor: pointer;
}
toolbar a{
    display: flex;
    height: inherit;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
}
toolbar a:hover{
    text-decoration: underline;
}

@media only all and (max-width: 430px) {
    toolbar{
        height: fit-content;
    }
    toolbar .content{
        align-items: center;
        padding-top: 16px;
        padding-bottom: 16px;
        flex-direction: column;
        gap: 6px;
    }
}