body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 0;
	background: linear-gradient(120deg, #ffecd2, #fcb69f);
	color: #333;
}

h1 {
	text-align: center;
	color: #ffffff;
	background-color: #ff6f61;
	margin: 0;
	padding: 20px;
	font-size: 25px;
	letter-spacing: 2px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#logo {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 10;
}

#logo img {
	width: 120px;
	height: auto;
	max-width: 100%;
}

#description {
	text-align: center;
	margin: 10px 20px;
	font-size: 16px;
	color: #444;
}

#container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 20px;
	gap: 10px;
}

#full-page {
    width: calc(100% - 20px); /* Adjust 40px to your desired allowance */
    font-size: 16px;
    color: #555;
    padding: 15px;
	background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow-y: auto;
    margin: 30px auto 0 calc(-7px);
}


#side-left,
#side-right {
	width: 200px;
	font-size: 16px;
	color: #555;
	padding: 15px;
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow-y: auto;
}

#app {
	flex: 1;
	min-width: 300px;
	max-width: 900px;
	padding: 20px;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#messages {
	flex: 1;
	height: 60vh;
	overflow-y: auto;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 10px;
	margin-bottom: 15px;
	background: #fafafa;
}

.message {
	margin: 10px 0;
	padding: 10px;
	border-radius: 8px;
}

.message.user {
	background: #e3f2fd;
	text-align: right;
	color: #0d47a1;
}

.message.bot {
	background: #e8f5e9;
	text-align: left;
	color: #1b5e20;
	white-space: pre-wrap;
}

#input-container {
	display: flex;
	align-items: center;
}

#user-input {
	flex: 1;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
}

#send-btn {
	margin-left: 10px;
	padding: 15px 25px;
	font-size: 16px;
	font-weight: bold;
	background: linear-gradient(90deg, #ff6f61, #ff8a65);
	border: none;
	border-radius: 5px;
	color: white;
	cursor: pointer;
	disabled: true;
}

#send-btn:hover {
	background: linear-gradient(90deg, #ff8a65, #ff6f61);
}

ul {
	padding-left: 20px;
}

li {
	margin: 5px 0;
}

a {
	color: #007BFF;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

#menu {
	position: absolute;
	top: 2px;
	right: 10px;
	z-index: 1000;
	display: flex; /* Ensure the menu stays in one line */
	flex-wrap: nowrap; /* Prevent wrapping */
	align-items: center; /* Align items vertically */
}

#menu-btn {
	font-size: 40px;
	cursor: pointer;
	background: none;
	border: none;
	outline: none;
	color: #000000;
	padding: 5px;
	display: inline-block;
	white-space: nowrap; /* Prevent text from wrapping in the button */
}

#menu-items {
	display: none;
	position: absolute;
	top: 50px;
	right: 10px;
	background: white;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	list-style: none;
	padding: 10px;
	margin: 0;
	white-space: nowrap; /* Prevent wrapping of menu items */
}

#menu-items li {
	padding: 10px 15px;
	cursor: pointer;
	text-align: left;
}

#menu-items li:hover {
	background: #fcb69f;
}


@media (max-width: 768px) {
	#container {
		flex-direction: column;
		align-items: center;
	}

	#side-left,
	#side-right {
		width: 100%;
		margin-bottom: 10px;
		height: auto;
	}

	#app {
		width: 100%;
		padding: 15px;
	}

	#user-input {
		font-size: 14px;
	}

	h1 {
		font-size: 28px;
		padding: 15px;
	}

	#logo img {
		width: 60px;
	}
}