/* 
This is the base style for elements found on all endpoints.
*/

html
{
    color: white;
    width: 100%;
    height: 100%;
}

body
{
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    display:flex;
    flex-direction: row;
}

.navbar,
.sidebar {
    width: 15%;
    justify-content: left;
}

button
{
    background-color: rgb(0, 128, 255);
    border-radius: 5%;
    margin: 2%;
    padding: 10px;
    color: white;
}

.APIButton
{
    margin-top: auto;
    border-radius: 5%;
    padding: 10px;
}

.content {
    width: 68%;
    margin-left: 1%;
    margin-right: 1%
}

.navbar,
.content,
.sidebar {
    height: 100%;
    background-color: rgba(58, 58, 58, 0.692);
    display: flex;
    flex-direction: column;
    border-radius: 2%;
    overflow: auto;
}

.userContainer {
    font-size: 12px;
    display: none;
    height: 5%;
    background-color: rgba(58, 58, 58, 0.692);
    border-radius: 2%;
    overflow: auto;
}
.userContainer p {
    padding-left: 2%;
    padding-right: 2%;
}