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

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

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

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

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

.messageHistoryContainer {
    height: 450px;
    background-color: #ccf1d00d;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
    -webkit-box-flex: 1;
}

.overflow-auto {
    overflow: auto;
}

.text-sm {
    font-size: .875rem
}

.text-teal {
    color: #4dc0b5;
}

.text-purple {
    color: #9561e2;
}

.justify-end {
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.text-xs {
    font-size: .75rem;
}

.text-grey-dark {
    color: #70818a;
}

.black {
    color: black;
}