
	.chat-pane.svelte-8srlr4 {
		width: 321px;
		height: 450px;
		border: 2px solid #f0f0f0;
		border-radius: 15px;
		display: flex;

		flex-direction: column;
		justify-content: space-between;
		overflow: hidden;
		background-color: white;
	}

	.title.svelte-8srlr4 {
		background-color: var(--color-redish);

		height: 42px;
		color: white;
		font-family: 'RedHatMono-Medium';
		font-size: 13px;
		border: px solid var(--color-redish);

		display: flex;
		align-items: center;
		column-gap: 1rem;
		padding: 1rem;
		box-sizing: border-box;
	}

	.conversation.svelte-8srlr4 {
		overflow-y: auto;
		margin-right: 2px;
		margin-top: 2px;
		margin-bottom: 2px;
		flex: 1;
		display: flex;
		flex-direction: column;
		row-gap: 0.5rem;
		padding: 1rem;
		box-sizing: border-box;
		background-color: white;
	}

	.input-pane.svelte-8srlr4 {
		height: 58px;
		border-top: 2px solid #f0f0f0;
		display: flex;
		transform: translate(0);
		overflow: hidden;
		background-color: white;
	}

	.input-text.svelte-8srlr4 {
		flex: 1;
		font-family: 'Inter-Regular';
		font-size: 12px;
		padding: 8px;
		overflow-y: auto;
		box-sizing: border-box;
		text-align: left;

		line-height: 14px;
	}
	.input-text.svelte-8srlr4:focus-visible {
		outline: none;
	}
	.input-button.svelte-8srlr4 {
		width: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--color-tealish);
	}
	[contenteditable='true'].svelte-8srlr4:empty:before {
		content: attr(placeholder);
		pointer-events: none;
		display: block; /* For Firefox */
		color: #c6c6c6;
	}

	.chat-entry.svelte-8srlr4 {
		display: flex;
		column-gap: 0.5rem;
		flex-direction: row-reverse;
	}
	.chat-entry.fromBot.svelte-8srlr4 {
		flex-direction: row;
	}

	.chat-user-icon.svelte-8srlr4 {
		display: flex;

		flex-direction: column;
		justify-content: flex-end;
	}
	.chat-user-icon.svelte-8srlr4 .material-icons:where(.svelte-8srlr4) {
		font-size: 16px;

		box-sizing: border-box;
		color: var(--color-tealish);
	}

	.chat-user-icon.fromBot.svelte-8srlr4 .material-icons:where(.svelte-8srlr4) {
		color: var(--color-redish);
	}

	.chat-user-text.svelte-8srlr4 {
		border-radius: 9px;
		background-color: var(--color-tealish);
		color: white;
		padding: 1rem;
		box-sizing: border-box;
		font-size: 14px;
		text-align: left;
	}
	.chat-user-text.fromBot.svelte-8srlr4 {
		background-color: #f0f0f0;
		color: black;
	}
