header {
    position: sticky;
    top: 0;
    margin: .5rem 1rem;
}

#navbar {
    background-color: white;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    align-items: center;
    padding: 0 1.5rem;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 2px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px; */
    border: 1px solid #e5e7eb;

}

.page-title {
    color: #4a5568;
    font-weight: normal;
    font-size: 1.5rem;
    padding-top: 5px;
}

.new-project-add-btn {
    background: #f69320;
    color: white;
    padding: 10px;
    border-radius: 5px;
    /* font-size: 13px; */
}

.navbar-left {
    display: flex;
    align-items: center;
}

#mobile-menu {
    display: none;
    padding: 5px 5px 0 5px;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 30px;
    transition: all .5s;
}

#mobile-menu:hover {
    background: #f3f4f6;
}