/* Chat containers */
.conversation-main {
    width: 100%;
    cursor: default;
    margin: 20px 20px;
	padding: 10px 10px;
    max-height: 800px;
    overflow-y: scroll;
}

.messages-container {
  border: 2px solid #dedede;
  background-color: #eee;
  border-radius: 5px;
  padding: 10px;
  margin: 10px 0;
  margin-left:120px;
}

/* Darker chat container */
.darker {
  border-color: #ccc;
  background-color: #ddd;
  margin-right:120px;
  margin-left:0px;
}

/* Clear floats */
.messages-container::after {
  content: "";
  clear: both;
  display: table;
}

/* Style images */
.messages-container img {
  float: left;
  max-width: 60px;
  width: 100%;
  margin-right: 20px;
  border-radius: 50%;
}

/* Style the right image */
.messages-container img.right {
  float: right;
  margin-left: 20px;
  margin-right:0;
}

/* Style time text */
.time-right {
  float: right;
  color: #aaa;
}

/* Style time text */
.time-left {
  float: left;
  color: #888;
}

.messages-not-read {
	border-color: #ffcc99;
}	