ChatUI {
	position: absolute;
	top: 100px;
	left: 30px;
	bottom: 200px;
	width: 600px;
	justify-content: center;
	border-radius: 20px;
	flex-direction: column;
	align-items: stretch;
	font-size: 17px;
	font-family: Poppins;
	gap: 10px;

	.output {
		flex-grow: 1;
		flex-direction: column;
		justify-content: flex-end;
		align-items: stretch;
		gap: 12px;
		overflow: scroll;
		padding: 5px;

		.chat_entry {
			flex-shrink: 0;
			white-space: pre;
			gap: 10px;
			padding: 2px;
			text-shadow: 2px 2px 2px #000a;

			.container-right {
				flex-direction: column;
				align-items: flex-start;
			}

			.avatar {
				width: 32px;
				height: 32px;
				background-position: center;
				background-size: cover;
				border-radius: 100px;
			}

			.author {
				color: #2d95ce;
				white-space: nowrap;
				flex-shrink: 0;
				align-items: center;
				font-weight: bold;
			}

			.message {
				color: #fff;
			}
		}
	}

	.output-open {
		background-color: rgba(0,0,0, 0.5);
	}

	.input {
		color: white;
		flex-shrink: 0;
	}

	&.open {
		.input {
			background-color: rgba(0,0,0, 0.5);
		}
	}
}
