.chat-message-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.chat-message-user {
    font-weight: bold;
}

.chat-message-body-text.original {
    background: #e3e3e3;
    padding: 10px;
    font-size: 12px;
}

.chat-message-body-text-caption {
    display: flex;
    align-items: center;
    color: gray;
    margin-bottom: 5px;
}

.chat-message-body-text-caption:before {
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    background: url('/images/website_ico.png') center;
    background-size: 20px;
    background-repeat: no-repeat;
    min-width: 20px;
    margin-right: 5px;
}