body {
	font-family: Arial, sans-serif;
	background-color: #f0f2f5;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}
#chat-container {
	width: 500px;
	height: 600px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
h1 {
	text-align: center;
	border-bottom: 1px solid #eee;
	padding: 15px;
	margin: 0;
	font-size: 1.2em;
}
#chat-history {
	flex-grow: 1;
	padding: 20px;
	overflow-y: auto;
}
.message {
	margin-bottom: 15px;
	padding: 10px 15px;
	border-radius: 18px;
	line-height: 1.4;
	max-width: 80%;
}
.agent {
	background-color: #e9e9eb;
	align-self: flex-start;
}
.user {
	background-color: #007bff;
	color: white;
	align-self: flex-end; 
	margin-left: auto; /* Esto alinea a la derecha */
}
#input-bar {
	display: flex;
	padding: 20px;
	border-top: 1px solid #eee;
}
#pregunta-usuario {
	flex-grow: 1;
	border: 1px solid #ccc;
	border-radius: 20px;
	padding: 10px 15px;
	font-size: 1em;
}
#enviar-btn {
	margin-left: 10px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 20px;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 1em;
}