/* Keep the whole chat, including the composer, inside a 10% outer margin. */
html {
	background: var(--main-background);
}

body {
	position: relative;
	width: 80vw;
	height: 80vh;
	height: 80dvh;
	margin: 10vh 10vw;
	margin-block: 10dvh;
	grid-template-rows: auto minmax(0, 1fr) max-content;
	grid-template-columns: max-content minmax(0, 1fr) max-content;
}

#composer input[type="text"] {
	min-width: 0;
}
