body {
    background-color: #444;
    margin-top: calc(7vh + 20px);
}
#the-bar {
    width:100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 7vh;
    background-color: #666;
    display: flex;
    justify-content: right;
    align-items: center;
    border-bottom: #000 solid 2px;
}
input {
    background-color: #666;
    border: #000 solid 1px;
    border-radius: 10px;
    color: #000;
    padding: 5px;
}
input::placeholder {
    color: #222;
}
input:focus {
    outline: none;
    border: #008 solid 1px;
}
#leaderboard-buttons-container {
    display: flex;
}
.leaderboard-button {
    background-color: #000;
    color: #fff;
    padding: 5px;
    margin: 10px;
}
.team-container {
    width: calc(100% - 56px);
    font-weight: 750;
    background-color: #666;
    border: #000 solid 2px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 10px;
    margin-bottom: 10px;
    margin-top: 0px;
}
#add-problem-container {
    background-color: #666;
    border: #000 solid 2px;
    border-radius: 10px;
    padding: 10px;
}
#query-uid-container {
    background-color: #666;
    border: #000 solid 2px;
    border-radius: 10px;
    padding: 10px;
    display: flex;
}
input[type='file'] {
    font-size: 20px;
    font-weight: 750;
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: #000;
    padding: 0;
}
input[type='file']::file-selector-button {
    border: #000 solid 2px;
    background-color: #666;
    outline: none;
    border-radius: 10px;
}
button {
    background-color: #00f;
    color: #fff;
    border-radius: 10px;
    border: none;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 750;
    cursor: pointer;
}
#add-problem-file-inp {
    font-size: 15px;
    font-weight: 750;
}
#add-problem-file-inp::file-selector-button {
    border: #000 solid 1px;
    background-color: #666;
    outline: none;
    border-radius: 10px;
}
#desc-box {
    width: 50%;
    height: 50%;
    background-color: #666;
    margin-left: 20px;
    border-radius: 15px;
    border: #000 solid 3px;
    padding: 10px;
    font-weight: 750;
    color: #222;
    font-size: 20px;
}
#logout-wrapper {
    font-weight: 750;
    margin-right: 15px;
    cursor: pointer;
}
#leaderboard-wrapper {
    font-weight: 750;
    margin-right: 15px;
    cursor: pointer;
}
#home-wrapper {
    position: fixed;
    left: 10px;
    font-weight: 750;
    cursor: pointer;
}
#points-wrapper {
    position: fixed;
    left: 100px;
    font-weight: 750;
    width: max-content;
}
.problem-container {
    width: calc(100% - 30px);
    background-color: #666;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    border: #000 solid 2px;
}
.problem-name-wrapper {
    width: 20%;
    font-weight: 750;
}
.desc-wrapper {
    width: 50%;
    font-weight: 750;
    overflow: hidden;
    margin-left: 10%;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.Easy-wrapper {
    width: 75px;
    height: 20px;
    align-items: center;
    background-color: #00cc00;
    border: #005500 solid 2px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    color: #005500;
    font-weight: 750;
}
.Medium-wrapper {
    width: 75px;
    height: 20px;
    align-items: center;
    background-color: #cccc00;
    border: #555500 solid 2px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    color: #555500;
    font-weight: 750;
}
.Hard-wrapper {
    width: 75px;
    height: 20px;
    align-items: center;
    background-color: #cc0000;
    border: #550000 solid 2px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    color: #550000;
    font-weight: 750;
}
.Extreme-wrapper {
    width: 75px;
    height: 20px;
    align-items: center;
    background-color: #cc00cc;
    border: #550055 solid 2px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    color: #550055;
    font-weight: 750;
}
.Impossible-wrapper {
    width: 100px;
    height: 20px;
    align-items: center;
    background-color: #cccccc;
    border: #555555 solid 2px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    color: #555555;
    font-weight: 750;
}
div {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    width: min-content;
    color: #111;
}
a {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    width: min-content;
    color: #111;
    text-decoration: none;
}
