/* scrollbar css */
/* width */
::-webkit-scrollbar {
    width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #d7d7d7;
    border-radius: 6px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #a59e9e;
    border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.chatroom-username {
    color: #768387;
    font-size: 11px;
}
