#MyProject {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    /* background-color: azure; */    
    background-color: #f3f4f6;
}

.my-project-navbar{
    height: 74px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    flex-direction: row;
    align-content: space-around;
    align-items: center;
    line-height: 86px;
    box-shadow: 0px 3px 6px rgb(0 0 125 / 13%);
}
.my-project-div {
    width: 100%;
    height: 100%;
    /* background-color: antiquewhite; */
    background-color: #f3f4f6;
}
.my-project-header {
    margin: 30px;
    margin-bottom: 0px;
}
.my-project-header >span{
    margin-right: 15px;
    cursor: pointer;
}
.my-project-header .active {
    border-bottom: 3px solid #4f8ef5;
}

.my-project-header .opened-projects {
    margin-right: 10px;
}

#closed-projects, #opened-projects {
    cursor: pointer;
}


#MyProject .project-list {
    padding-left: 30px;
    padding-top: 30px;
}
#MyProject .project-list .project-item {
    display: inline-block;
    background-color: #ffffff;
    padding: 6px 6px 0 6px;
    margin-right: 15px;
    width: 160px;
    vertical-align: top;
    border: 1px solid #EDEDED;
    border-radius: 4px;
    transition: box-shadow .5s;
    margin-bottom: 15px;
}


.project-card .project-card-img{
    height: 108px;
    background-color: #4f8ef5;
}

.project-card  .project-card-footer{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    align-content: center;
    flex-direction: row;
    height: 25px;
    padding: 0 3px 24px 9px;
}