body {
    background: #D9D9D9;
    margin: 0;
    font-family: Gupter;
    margin: 0;
}

.sidebar {
    width: 100%;
    background-color: #2C4251;
    color: white;
    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;

}

.nav-links{
    display: none;
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: #ffffff;
    padding: 0 20px;
    border-radius: 4px;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    z-index: 1000;
}

.nav-links.active{
    display: flex;
}

.nav-links .nav-item{
    color: black;
    cursor: pointer;
}

.nav-item{
    padding: 5px 0;
}

.nav-item:not(:last-child){
    border-bottom: solid 2px;
    border-color: #c1c1c1;
    border-bottom-width: 2px;
}

.menu-toggle{
    cursor: pointer;
    font-size: 40px;
    color: #c1c1c1;
}

#greeting{
    flex-direction:column
}

#greeting1{
    color: white;
    margin-bottom: 0;
}

#username{
    color: white;
}

#greeting2{
    color: white;
    font-weight: 100;
    margin-top: 0;
    font-size: 15px;
}

#main-logo{
    display: block;
    margin: 0 auto;
    width: 500px;
    height: auto;
}

.search-wrapper{
    display: flex;
    justify-content: center;
}

#searchBar{
    width: 80%;
    font-size: 20px;
    font-family: Gupter;
    border: none;
    border-radius: 4px;
    margin: 10px 0;
}

.project-list{
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-card{
    width: 80%;
    border: none;
    border-radius: 8px;
    padding: 20px 0;
    padding-left: 5px;
    margin-bottom: 2px;
    background-color: #2d4252;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.project-creation-wrapper{
    display: flex;
    justify-content: left;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
    cursor: pointer;
    padding: 20px 5px;
    background-color: #99a5ba;
    color: black;
    border-radius: 8px;
}

.add-button{
    padding: 0 10px;
}