/* Chat containers */
.container {
    border: 2px solid #ab24fd;
    background-color: #ffe4ea;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    margin-right: 20px;
}
.container span{
    font-size: 12px;
    margin-top: 30px;
    color: #999;
}
/* Darker chat container */
.darker {
    border-color: #78d23d;
    background-color: #ffe4ea;
}

/* Clear floats */
.container::after {
    content: "";
    clear: both;
    display: table;
}

/* Style images */
.container img {
    float: left;
    max-width: 60px;
    width: 100%;
    margin-right: 20px;
    border-radius: 50%;
}

/* Style the right image */
.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: #999;
}