
.chat-app{
  padding-bottom: 1em;
}

.chat-messages {
  font-size: 1.1em;
  margin: 0;
}


.chat-messages-list {  
  margin: 0;
  padding: 0;
  height: 500px;
  overflow-y: scroll;
}

.chat-message{
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0.3em 0;
  margin-bottom: 3px;
  border-radius: 0.3em;
  font-size: 0.8em;
}

.chat-avatar{
  border-radius: 50%;
  width: 40px;
}
.chat-message:hover{
  background-color: #f5f5f5;
}
.chat-username{
  font-size: 0.8em;
  border-radius: 0.5em;
  padding: 0.1em 0.5em;
}

.chat-log {
  color: gray;
  font-size: 70%;
  margin: 5px;
  text-align: center;
  display: block;
  list-style-type: none;
}


.chat-message.chat-typing .chat-messageBody {
  color: gray;
}


.chat-inputMessage {
  font-size: 100%;
  border: 5px solid #cecece;
  border-radius: 0.5em;
  height: 60px;
  outline: none;
  padding-left: 10px;
  width: 86%;
}


.chat-connected{ 
  text-align: right;
  margin: 0;
}
.chat-connected-list {  
  margin: 0;
  padding: 0;
  text-align: right;
  height: 500px;
  overflow-y: scroll;
}

.chat-connected-list li {  
  margin: 0;
  padding: 0.2em;
  list-style-type: none; 
  position: relative;
  font-size: 0.8em;

}
.chat-connected-list li.new{
  background: inherit;
}
.chat-connected-list li.myself{
  font-weight: bold;
}
.chat-connected-list li.new:before{
  background: orange;
  display: block;
  border-radius: 50%;
  content: '';
  margin-right: 3px;
  width: 1em;
  height: 1em;
  position: absolute;
  left: 0;
  top: 0.5em;
}