.chat {
	list-style: none;
	font-size: 1rem;
	max-width: 80%;
	text-align: start;
	padding: 15px;
	word-break: break-word;
	letter-spacing: 1px;
}

.chat img {
	width: 100%;
}

.incoming {
	background-color: var(--lightGray);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border-radius: 17px 17px 17px 0;
}

.outgoing {
	align-self: flex-end;
	-ms-flex-item-align: end;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	background-color: var(--techBlue);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border-radius: 17px 17px 0 17px;
}

.outgoing-chat-background-blue {
	background-color: var(--techBlue);
}

.incoming-name {
	display: none;
}