.aihcc-floating-shell {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 99999;
	font-family: Arial, sans-serif;
}

.aihcc-fab {
	border: 0;
	border-radius: 999px;
	padding: 14px 18px;
	cursor: pointer;
	background: #0f62fe;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.aihcc-widget {
	width:400px;
	max-width: calc(100vw - 32px);
	margin-bottom: 12px;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #dcdcde;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.aihcc-widget--admin {
	width: 100%;
	max-width: 760px;
	margin-top: 16px;
}

.aihcc-header,
.aihcc-admin-header {
	display: flex;
	align-items: center;
	justify-text: space-between;
	gap: 12px;
}

.aihcc-header {
	padding: 14px 16px;
	background: #0f62fe;
	color: #fff;
}

.aihcc-title {
	font-size: 16px;
	font-weight: 700;
}

.aihcc-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.aihcc-icon-button,
.aihcc-link-button {
	border: 0;
	background: transparent;
	cursor: pointer;
}

.aihcc-icon-button {
	color: #fff;
	font-size: 22px;
	line-height: 1;
}

.aihcc-link-button {
	color: #fff;
	text-decoration: underline;
	font-size: 13px;
}

.aihcc-messages {
	height: 360px;
	overflow-y: auto;
	padding: 14px;
	background: #f6f7f7;
}

#aihcc-admin-chat-root .aihcc-messages{
	height: 80vh;
}

.aihcc-message {
	max-width: 85%;
	margin-bottom: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	white-space: pre-wrap;
	word-break: break-word;
	line-height: 1.45;
	font-size: 14px;
}

.aihcc-message--bot {
	background: #fff;
	border: 1px solid #dcdcde;
	color: #1d2327;
}

.aihcc-message--user {
	margin-left: auto;
	background: #0f62fe;
	color: #fff;
}

.aihcc-composer {
	display: flex;
	gap: 8px;
	padding: 12px;
	border-top: 1px solid #dcdcde;
	background: #fff;
}

.aihcc-input {
	flex: 1;
	padding: 10px 12px;
	border: 1px solid #8c8f94;
	border-radius: 8px;
	resize: vertical;
	font: inherit;
	min-height: 46px;
}

.aihcc-send {
	border: 0;
	border-radius: 8px;
	padding: 0 14px;
	background: #0f62fe;
	color: #fff;
	cursor: pointer;
	font-weight: 700;
}

.aihcc-send:disabled,
.aihcc-fab:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.aihcc-error {
	padding: 0 12px 12px;
	color: #b32d2e;
	font-size: 13px;
}

.aihcc-admin-console {
	max-width: 960px;
}

.aihcc-admin-header {
	margin: 12px 0;
}
.aihcc-admin-sidebar-panel{
	overflow: auto;
}
.aihcc-admin-chat-box-left-panel{
	height: calc(90% - 80px);
    overflow: auto;
}
.aihcc-admin-chat-box-panel{
	display: flex; height: 90vh; border: 1px solid #ddd;overflow: auto;
}