.suggestion-btn {
	padding: 8px 16px;
	background-color: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 0;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s;
	color: #9e9e9e;
}

.suggestion-btn:hover {
	background-color: #1dff1a;
	color: #0a0a0a;
	border-color: #1dff1a;
}

.chat-box {
	background-color: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 0;
	box-shadow: 0 10px 40px rgba(0,0,0,0.5);
	height: 600px;
	display: flex;
	flex-direction: column;
}

.chat-box-header {
	padding: 30px;
	border-bottom: 1px solid #2a2a2a;
	display: flex;
	align-items: center;
	gap: 15px;
}

.chat-box-avatar {
	width: 40px;
	height: 40px;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	overflow: hidden;
}

.chat-box-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100px;
}

.chat-box-title {
	margin: 0;
	font-size: 18px;
	color: #ffffff;
}

.chat-box-status {
	margin: 0;
	font-size: 12px;
	color: #888888;
}

.chat-messages {
	flex: 1;
	overflow-y: auto;
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.chat-message {
	display: flex;
	gap: 15px;
}

.chat-message-avatar {
	width: 35px;
	height: 35px;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	overflow: hidden;
}

.chat-message-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100px;
}

.chat-message-content {
	background-color: #2a2a2a;
	color: #ffffff;
	padding: 15px 20px;
	border-radius: 0;
	max-width: 70%;
	min-width: 120px;
	width: auto;
	box-sizing: border-box;
	border: 1px solid #3a3a3a;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.chat-message-content:has(> svg:only-child) {
	min-width: auto;
	width: auto;
	padding: 15px;
}

.chat-message-content p {
	margin: 0;
	line-height: 1.6;
}

.chat-message-content svg {
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
}

.chat-input-container {
	padding: 20px 10px;
	border-top: 1px solid #2a2a2a;
	box-sizing: border-box;
	max-width: 100%;
	width: 100%;
	overflow-x: hidden;
	min-width: 0;
}

.chat-input-wrapper {
	display: flex;
	gap: 10px;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.chat-input {
	flex: 1;
	padding: 15px;
	border: 1px solid #2a2a2a;
	border-radius: 0;
	font-size: 16px;
	outline: none;
	background-color: #0a0a0a;
	color: #ffffff;
}

.chat-input::placeholder {
	color: #888888;
}

.btn {
	display: inline-block;
	padding: 16px 32px;
	border-radius: 0;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	font-family: 'JetBrains Mono', monospace;
	transition: all 0.3s;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background-color: #1dff1a;
	color: #0a0a0a;
	border: none;
}

.btn-primary:hover {
	box-shadow: 0 0 20px #1dff1a;
}

.chat-send-btn {
	padding: 15px 30px;
	border-radius: 0;
	font-size: 16px;
}

.chat-message-user {
	flex-direction: row-reverse;
}

.chat-message-content-user {
	background-color: #1dff1a;
	color: #0a0a0a;
	padding: 15px 20px;
	border-radius: 0;
	max-width: 70%;
	box-sizing: border-box;
}

.chat-message-avatar-user {
	background: #2a2a2a;
	border: 1px solid #3a3a3a;
}

.message-user {
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
	align-items: flex-start;
	gap: 15px;
}

.message-user > div:first-child {
	background-color: #1dff1a;
	color: #0a0a0a;
	order: 1;
}

.message-user > div:last-child {
	flex-shrink: 0;
	order: 2;
}

#chatMessages {
	flex: 1;
	overflow-y: auto;
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#chatMessages > div {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

#chatMessages > div > div {
	white-space: normal;
	word-break: normal;
	word-wrap: break-word;
}

#chatMessages::-webkit-scrollbar {
	width: 8px;
}

#chatMessages::-webkit-scrollbar-track {
	background: #1a1a1a;
}

#chatMessages::-webkit-scrollbar-thumb {
	background: #3a3a3a;
	border-radius: 0;
}

#chatMessages::-webkit-scrollbar-thumb:hover {
	background: #4a4a4a;
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
	.chat-input-container {
		padding: 15px 8px;
		max-width: 100%;
		width: 100%;
		min-width: 0;
	}
	
	.chat-input-wrapper {
		gap: 8px;
		min-width: 0;
		max-width: 100%;
		width: 100%;
	}
	
	.chat-input {
		padding: 12px;
		font-size: 14px;
		min-width: 0;
		flex: 1;
		max-width: 100%;
		width: 0;
	}
	
	.chat-send-btn {
		padding: 12px 16px;
		font-size: 14px;
		white-space: nowrap;
		flex-shrink: 0;
		min-width: fit-content;
	}
}

@media screen and (max-width: 480px) {
	.chat-input-container {
		padding: 12px 6px;
		max-width: 100%;
		width: 100%;
		min-width: 0;
	}
	
	.chat-input-wrapper {
		gap: 6px;
		min-width: 0;
		max-width: 100%;
		width: 100%;
	}
	
	.chat-input {
		padding: 10px;
		font-size: 13px;
		min-width: 0;
		max-width: 100%;
		width: 0;
		flex: 1;
	}
	
	.chat-send-btn {
		padding: 10px 12px;
		font-size: 12px;
		flex-shrink: 0;
		min-width: fit-content;
		white-space: nowrap;
	}
}

