body {
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 0 5%;
    /* background-color: #000000; */
}

.site_head {
    position: fixed;
    top: 0px;
    width: 90%;
    height: 50px;
    padding: 0px;
    display: flex;
    justify-content: center;
}

.navbar {
    background-color: #b288c5;
    margin: 0 auto;
    width: 100%;
    height: 50px;
    border-radius: 0px;
}

.nav-link {
    color: #1b2bb9;
}

.active {
    background-color: #a8ca72;
    color: #1b2bb9;
}

.site_container {
    width: 90%;
    display: flex;
    justify-content: center;
    position: fixed;
    margin: 0 auto;
    /* background-color: #85a196; */
    top: 50px;
    bottom: 30px;
    padding: 10px 10px 10px 10px;
    
}

.site_foot {
    background-color: #b288c5;
    color: #1b2bb9;
    position: fixed;
    bottom: 0px;
    width: 90%;
    margin: 0 auto;
    height: 30px;
    border-radius: 10px 10px 0px 0px;
}

.site-foot span {
    text-align: center;
    margin: 0 auto;
}

.notesearch {
    display: block;
    text-align: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 90px;
    background-color: #c6b2d1;
    padding: 10px 10px 10px 10px;
    border-radius: 0px 0px 10px 10px;
}

.notelist {
    display: flex;
    justify-content: left;
    position: absolute;
    top: 90px;
    bottom: 5px;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    overflow: auto;
}

.notelistgroup {
    width: 100%;
    padding: 10px 0px 0px 0px;
    text-align: left;
    justify-content: left;
    color: #1b2bb9;
    
}
.list-group-item:nth-child(even) {
    background-color: #dddddd;
}

.list-group-item:nth-child(odd) {
    background-color: #bbbbbb;
}
.list-group-item a {
    color: #1b2bb9;
    font-weight: bold;
}




.edittitle {
    display: block;
    text-align: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 90px;
    background-color: #c6b2d1;
    padding: 10px 10px 10px 10px;
    border-radius: 0px 0px 10px 10px;
}

.editbody {
    display: block;
    text-align: center;
    justify-content: center;
    position: absolute;
    top: 90px;
    bottom: 5px;
    width: 80%;
    height: auto;
    margin: 0 auto;
    padding: 10px 10px 10px 10px;
    overflow-y:auto;

}

.editbody_container {
    width: 80%;
    height: 100%;
    padding: 10px 0px 0px 0px;
    text-align: left;
    justify-content: left;
    color: #1b2bb9;
    
}

.panel{
    /* background-color: #aaa6ac; */
}