/* Chat containers */
.containermsg {
    background-color: #f1f1f1;
    border: 2px solid #dedede;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 5px;
}

/* Darker chat container */
.darker {
    border-color: #ccc;
    background-color: #ddd;
}

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

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

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


.containergal {
    background-color: #f1f1f1;
    border: 2px solid #dedede;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 5px;
}

/* Style images */
.containergal img {
    float: left;
    margin-right: 20px;
    max-width: 380px;
}

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

