body{
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #DADADC;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #B0BEC5;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #78909C;
}

.wrapper{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E8F5E9;
}

.main{
    background-color: #B0BEC5;
    width: 97%;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 6px 0px 0px 0px;
}

.scroll{
    overflow-y: scroll;
    scroll-behavior: smooth;
    height: 80vh;
}

.img1{
    border-radius: 50%;
    background-color: #81C784;
}

.name{
    font-size: 15px;
}

.msg{
    background-color: #F5F5F5;
    font-size: 14px;
    padding: 5px;
    border-radius: 5px;
    font-weight: 500;
    color: #455A64;
}

.between{
    font-size: 8px;
    font-weight: 500;
    color: #B0BEC5;
}

.navbar{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.form-control{
    font-size: 12px;
    font-weight: 400;
    width: 230px;
    height: 30px;
    border: none;
}

form-control: focus{
    box-shadow: none;
    overflow: hidden;
    border: none;
}

.form-control:focus{
    box-shadow: none !important;
}

.icon1{
    color: #7986CB !important;
    font-size: 18px !important;
    cursor: pointer;
}

.icon2{
    color: #3F51B5 !important;
    font-size: 18px !important;
    position: relative;
    left: 8px;
    padding: 0px;
    cursor: pointer;
}

.icondiv{
    border-radius: 50%;
    width: 15px;
    height: 15px;
    padding: 2px;
    position: relative;
    bottom: 1px;
}