body {
	font-family: Arial, sans-serif;
}

.chat-container {
	width: 500px;
	height: 600px;
	margin: 50px auto;
	background-color: #f0f0f0;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.chat-header {
	background-color: #333;
	color: #fff;
	padding: 10px;
	border-bottom: 1px solid #ccc;
}

.chat-messages {
	padding: 20px;
	overflow-y: auto;
	height: 400px;
}

.chat-input {
	padding: 10px;
	border-top: 1px solid #ccc;
}

#message-input {
	width: 80%;
	height: 30px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

#send-button {
	width: 15%;
	height: 30px;
	background-color: #333;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#send-button:hover {
	background-color: #444;
}


