#dataBlock {
    margin-top: 30px;
}

#menuBar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: hsl(134deg 61% 41%);
}

#menuBar li {
    float: left;
}

#menuBar li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

#menuBar li a:hover {
    background-color: #111;
}

#menuBar li div {
    color: white;
    text-align: center;
    padding: 14px 16px;
}

#menuClickBar {
    float: right;
}

#changeSystem,
#logoutBtn {
    padding: 4px 10px;
    align-items: center;
    border: none;
    color: white
}


#changeSystem input,
.uploadBtn {
    border: none;
    background-color: #007bff;
    height: 30px;
    color: white;
}

.changeSystem {
    background-color: #4455f5;
    color: white;
    border: none;
}

#logoutBtn button {
    border: none;
    background-color: #ffc107;
    height: 30px;
}

/*loadingBar*/
.progress {
    position:relative;
    height:auto;
    width:400px;
    border: 1px solid #ddd;
    padding: 1px;
    border-radius: 3px;
}
.bar {
    background-color: #7cc7ee;
    width:0%;
    height:20px;
    border-radius: 3px;
}
.percent {
    position:absolute;
    display:inline-block;
    top:3px;
    left:48%;
}
