body {
	font-family: "Roboto", sans-serif;
	background-color: #d9d9d9;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60vh;
	margin: 0;
}
.container {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 500px;
	height: 100%;
	max-height: 80vh;
	background-color: #d9d9d933;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin: 1rem;
}
.chat-header {
	font-family: "Open Sans", sans-serif;
	background-color: #5d1263;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5em;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}
.chat-header h1 {
	color: white;
	font-size: 1.25rem;
	font-weight: 600;
}

.logo,
.fa-arrow-left {
	border-radius: 50%;
    background-color: #bca2be;
    color: #5d1263;
    height: 50px;
    width: 50px;
    display: flex;
    font-size: 12px;
    align-items: center;
    justify-content: center;
}

.chat-messages {
	flex-grow: 1;
	padding: 1rem;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.chat-message {
	display: flex;
}
.chat-message.user {
	display: flex;
	gap: 3px;
	flex-direction: column;
	align-items: flex-end;
}
.chat-message-bubble {
	padding: 0.75rem;
	border-top-left-radius: 40px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	max-width: 75%;
	border: 1px solid #2e2d2d;
}
.chat-message-bubble.bot {
	background-color: #e5e7eb;
}

.chat-message-bubble.user {
	background-color: #ffffff;
	color: black;
	border-top-left-radius: 20px;
	border-top-right-radius: 40px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 0px;
}

.timestamp {
	font-size: 0.5rem;
	color: #6b7280; /* soft gray */
	align-self: flex-end; /* push to the right */
}

.chat-message.user .timestamp {
	text-align: right;
}
.input-area {
	padding: 1rem;
	border-top: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
}
.input-area input {
	flex-grow: 1;
	padding: 0.5em;
	border: 1px solid #d1d5db;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	border-right: none;
	outline: none;
}
.input-area input:focus {
	border-color: #2e2d2d;
	box-shadow: 0 0 0 2px rgba(188, 162, 190, 0.5);
}
.input-area button {
	padding: 0.75rem 1rem;
	background-color: #5d1263;
	color: white;
	border: none;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s;
}
.input-area button:hover {
	background-color: #5d1263e5;
}
