html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

.chatmessages {
	width: 100%;
	height: 100%;
	overflow: auto;
}

.chatmessageauthor {
	display: inline-block;
	font-weight: bold;
	margin-right: 5px;
}

.chatmessagecontent {
	display: inline-block;
}

.chatmessagecontent:has(img) {
	display: block;
}

.chatmessagecontent > img {
	height: 200px;
}
