#chat-input-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1rem;
	padding: 0.5rem;
}

#chat-input {
	width: 100%;
	max-width: 400px;
	padding: 0.5rem;
	margin-bottom: 0.5rem;
	border: 1px solid lightgreen;
	border-radius: 4px;
	outline: none;
}

#submit-chat-button,
#clear-button {
	background-color: lightgreen;
	border: none;
	padding: 1rem;
	margin-bottom: 0.5rem;
	color: #121212;
	font-weight: bold;
	cursor: pointer;
	margin-right: 0.5rem;
	border-radius: 4px;
}

#submit-chat-button:hover,
#clear-button:hover {
	background-color: #75e875;
}

#response-box {
	max-width: 400px;
	width: 100%;
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 4px;
	overflow-y: auto;
	max-height: 300px;
}

.message {
	margin-bottom: 1rem;
	max-width: 100%;
}

.user-message {
	text-align: right;
}

.user-message span {
	background-color: lightgreen;
	color: #121212;
	padding: 0.5rem 1rem;
	display: inline-block;
	border-radius: 4px;
}

.ai-message span {
	background-color: #404040;
	color: white;
	padding: 0.5rem 1rem;
	display: inline-block;
	border-radius: 4px;
}
