*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.main{
  padding: 10px;
  padding-top: 20px;
}
.mainSection {
  display: flex;
  justify-content: space-between;
  
}
.mainSection .treeLineAndChat {
    width: 100px;
    display: flex;
    justify-content: space-evenly;
}

.mainSection .treeLineAndChat .chats {
    font-weight: bold;
}
.mainSection .cameraAndPen {
    width: 100px;
    display: flex;
    justify-content: space-evenly;
    
}


.searchSection {
    position: relative;
}
.searchSection .searchInput {
    display: block;
    border: none;
    outline: none;
    width: 95%;
    background-color: rgba(216, 216, 216, 0.521);
    padding: 10px;
    border-radius: 20px;
    margin: 10px auto;
    padding-left: 50px;
}

.searchSection .fa-magnifying-glass {
    position: absolute;
    left: 20px;
    top: 10px;
    color: gray;
    padding-left: 15px;
}


.profileSection {
    display: flex;
    align-items: center;
    padding: 10px;
    padding-top: 20px;

}
.profileSection a{
    text-decoration: none;
    display: block;
    font-size: 10px;
    
    position: relative;
}
.profileSection img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}.profileSection p{
     width: 50px;
    text-wrap: wrap;
    overflow-wrap: break-word;
    color: black;
}.profileSection a .fa-circle{
    color: green;
    position: absolute;
    right: 5px;
    bottom: 30px;
    box-shadow: 0px 0px 5px 2px white;
    border-radius: 50%;
}
.chatList{
    display: flex;
    flex-direction: column;
}
.chatList a{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-;
    padding: 10px;
    padding-top: 20px;
    border-bottom: 1px solid rgba(216, 216, 216, 0.521);
    position: relative;
}
.chatList a img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.chatList a i{
    color: green;
    position: absolute;
    left: 50px;
    bottom: 15px;
    box-shadow: 0px 0px 5px 2px white;
    border-radius: 50%;
    font-size: 10px;
}
.chatList a .name{
    color: black;
    padding-left: 20px;
}