#toolbar ul {
    margin: 0;
    padding: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8842d5;
    position: fixed;
    width: 100%;
}

.center-items {
    display: flex;
    gap: 10px;
}

#toolbar li,
#toolbar li div {
    display: flex;
    align-items: center;
    min-height: 50px;
    min-width: 159px;
}

#toolbar li .txt {
    color: white;
    padding: 2px;
    flex-grow: 1;
}

#toolbar li .txtNumber {
    color: white;
    padding: 15px;
}

#toolbar img {
    vertical-align: middle;
    margin-left: 5px;
}

#toolbar li div:not(.dropup-content):hover {
    background-color: #b580ed;
}

#toolbar li:not(.center-items):hover {
    background-color: #b580ed;
}

#toolbar .dropup-content {
    display: none;
    position: absolute;
    background-color: #8842d5;
    min-width: 140px;
    bottom: 50px;
    z-index: 1;
}

#toolbar .dropup:hover .dropup-content {
    display: block;
}