.wrapper{
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;

}
.chat-wrapper{
    display: flex;
    justify-content: space-between;
    background-color: #244fbd;
    padding: 10px;
    border: 1px solid white;

}
.active-users{
    width: 100px;
    height: 100%;
    background-color: #4d96f0;
    margin-right: 10px;
    border: 1px solid white;
    padding: 0px 7px;
}
.messages-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.messages{
    height: 300px;
    background-color: #4d96f0;
    margin-bottom: 10px;
    border: 1px solid white;
    text-align: left;
    padding: 10px;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

input{
    margin-right: 10px;
}
p{
    font-size: 16px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 4px 0;
}
.typing-wrapper{
    align-self: flex-end;
}
.active-users div{
    display: flex;
    align-items: center;
}
.online{
    background-color: green;
    width: 10px;
    height: 10px;
    margin-right: 4px;
    margin-bottom: 3px;
    border-radius: 50%;
}
.mess{
    background-color: white;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    justify-content: space-between;
}