.chatBox-con-bg #chatBox {
	min-height: 10vh;
	max-height: 40vh;
	overflow-y: auto;
	border-radius: 8px;
	margin-top: 25px;
	margin-bottom: 25px;
	display: flex;
	flex-direction: column;
	padding-right: 0.5rem;
}

#chatBox::-webkit-scrollbar {
	width: 5px;
	height: 10px;
	background: #ddd;
}

.msg-body p {
	margin-block-start: 0;
	margin-block-end: 0;
}

.overflow-chat {
	overflow: hidden;
}

#chatBox::-webkit-scrollbar-track {
	background: #ddd;
}

#chatBox::-webkit-scrollbar-thumb {
	background: rgb(77 107 254/var(--tw-bg-opacity, 1));
}

#chatBox::-webkit-scrollbar-thumb:hover {
	background: rgb(77 107 254/var(--tw-bg-opacity, 1));
}

.chat-msg {
	max-width: 75%;
	padding: 10px 14px;
	border-radius: 15px;
	margin-bottom: 10px;
	line-height: 1.4;
}

.chatBox-scroll .chat-msg {
	max-width: 90%;

}

.chat-msg strong {
	display: block;
	margin-bottom: 5px;
}

.chat-msg.user {
	background-color: rgba(0, 184, 217, .05);
	border: 1px solid rgba(0, 184, 217, .2);
	border-radius: .5rem;
	align-self: flex-end;
	text-align: right;
	border-bottom-right-radius: 0;
}

.chat-msg.ai {
	background-color: rgba(77, 107, 254, .05);
	border: 1px solid rgba(77, 107, 254, .2);
	border-radius: .5rem;
	align-self: flex-start;
	border-bottom-left-radius: 0;
}

/* new */
.chatBox-head {
	color: rgb(38 45 59 / var(--tw-text-opacity, 1));
	font-weight: 600;
	font-size: 1.5rem;
}

body {
	width: 100%;
	height: 100%;
	background-color: rgba(77, 107, 254, .05);
}

.chatBox-con-bg {
	background-color: #fff;
	padding: 20px;
	border-radius: 1rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.chatBox-main-bg {
	background-color: rgba(77, 107, 254, .05);
	padding: 1rem;
	margin-bottom: 1rem;
	border-radius: .75rem;
	border: 1px solid rgba(77, 107, 254, .2);
}

.chatBox-li {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.chatBox-li button {
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	margin-right: 0.5rem;
	color: rgb(38 45 59 / var(--tw-text-opacity, 1));
}

.chatBox-li button:hover {
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	margin-right: 0.5rem;
	color: rgb(38 45 59 / var(--tw-text-opacity, 1));
}

.chatBox-li button:nth-child(1) {
	background-color: rgba(142, 51, 255, 0.05);
	border-color: rgba(142, 51, 255, 0.3);
}

.chatBox-li button:nth-child(2) {
	background-color: rgba(77, 107, 254, 0.05);
	border-color: rgba(77, 107, 254, 0.3);
}

.chatBox-li button:nth-child(3) {
	background-color: rgba(255, 86, 48, 0.05);
	border-color: rgba(255, 86, 48, 0.3);
}

.chatBox-li button:nth-child(4) {
	background-color: rgba(34, 197, 94, 0.05);
	border-color: rgba(34, 197, 94, 0.3);
}

.chatBox-li button:nth-child(5) {
	background-color: rgba(255, 171, 0, 0.05);
	border-color: rgba(255, 171, 0, 0.3);
}

.chatBox-li button:nth-child(6) {
	background-color: rgba(142, 51, 255, 0.05);
	border-color: rgba(142, 51, 255, 0.3);
}

.chatBox-li button:nth-child(7) {
	background-color: rgba(77, 107, 254, 0.05);
	border-color: rgba(77, 107, 254, 0.3);
}

.chatBox-li button:nth-child(8) {
	background-color: rgba(255, 86, 48, 0.05);
	border-color: rgba(255, 86, 48, 0.3);
}

.chatBox-li button:nth-child(9) {
	background-color: rgba(34, 197, 94, 0.05);
	border-color: rgba(34, 197, 94, 0.3);
}

.chatBox-li button:nth-child(10) {
	background-color: rgba(255, 171, 0, 0.05);
	border-color: rgba(255, 171, 0, 0.3);
}

.chatBox-li .btn-check:checked+.btn,
.chatBox-li .btn.active,
.chatBox-li .btn.show,
.chatBox-li .btn:first-child:active,
:not(.btn-check)+.chatBox-li.btn:active {
	color: var(--bs-btn-active-color);
	background-color: var(--bs-btn-active-bg);
	border-color: var(--bs-btn-active-border-color);
}

.chatBox-form-control {
	background-color: #ffff;
	border-radius: 5px;
	border: 0;
	color: rgb(38 45 59 / var(--tw-text-opacity, 1));
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	width: 100%;
	display: block;
	min-height: 60px;
	max-height: 100px;
	line-height: normal;
	padding: 0.5rem 1rem;
	outline: 0;
}


.chatBox-form-control::-webkit-scrollbar {
	width: 5px;
	height: 10px;
	background: #ddd;
}

.chatBox-form-control::-webkit-scrollbar-track {
	background: #ddd;
}

.chatBox-form-control::-webkit-scrollbar-thumb {
	background: rgb(77 107 254/var(--tw-bg-opacity, 1));
}

.chatBox-form-control::-webkit-scrollbar-thumb:hover {
	background: rgb(77 107 254/var(--tw-bg-opacity, 1));
}

.chatBox-scroll {

	height: 460px;
	overflow-y: auto;
}

.chatBox-scroll::-webkit-scrollbar {
	width: 5px;
	height: 10px;
	background: #ddd;
}

.chatBox-scroll::-webkit-scrollbar-track {
	background: #ddd;
}

.chatBox-scroll::-webkit-scrollbar-thumb {
	background: rgb(77 107 254/var(--tw-bg-opacity, 1));
}

.chatBox-scroll::-webkit-scrollbar-thumb:hover {
	background: rgb(77 107 254/var(--tw-bg-opacity, 1));
}

.upload-form-control {
	display: none;
}

.chat-flex-box {
	display: flex;
	justify-content: end;
	align-items: center;
	margin-top: 1rem;
}

.chat-btn-upload {
	border: 1px solid rgba(77, 107, 254, .2);
	padding: .5rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	margin-right: 0.6rem;
	cursor: pointer;
}

.chat-btn-send {
	border: 1px solid rgb(77 107 254/var(--tw-bg-opacity, 1));
	padding: .5rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1rem;
	display: flex;
	color: rgb(255 255 255/var(--tw-text-opacity, 1));
	justify-content: center;
	align-items: center;
	background-color: rgb(77 107 254/var(--tw-bg-opacity, 1));
}

.password-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
}

.password-wrapper input {
	width: 100%;
	padding-right: 2rem;
}

.toggle-password {
	position: absolute;
	right: 12px;
	top: 8px;
	cursor: pointer;
}

.error-message {
	color: red;
	margin-top: 0.5rem;
}

.ai-chat-form-label {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: normal;
	color: #000C22;
	display: inline-block;
	margin-bottom: .5rem;
}

.ai-chat-form-control {
	background: #FFFFFF;
	width: 100%;
	display: block;
	border: 0.5px solid #717377;
	border-radius: 8px;
	font-style: normal;
	font-weight: 400;
	height: 50px;
	font-size: 1rem;
	line-height: normal;
	padding: 0 1rem;
	padding-right: 40px;
	color: #000C22;
}

.ai-chat-text-area {
	width: 100%;
	display: block;
	text-align: left;
	border-radius: 8px;
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: normal;
	padding: 1rem;
	min-height: 60px;
	max-height: 100px;
	overflow-y: auto;
	text-align: left;
	outline: 0 !important;
	color: #000C22;
	background-color: rgba(77, 107, 254, .05);
	border: 1px solid rgba(77, 107, 254, .2);
}

.ai-chat-log-btn {
	background: #fff;
	border: 1px solid #0957DE;
	border-radius: 8px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	font-size: 16px;
	display: block;
	text-decoration: none;
	text-align: center;
	padding: 0.5rem 1rem;
	color: #0957DE;
	transition: 0.3s;
	cursor: pointer;
}

#chat-imagePreview {
	width: 50px;
	height: 50px;
	background-position: center center;
	background-size: cover;
	display: inline-block;
	margin-right: 0.5rem;
	border-radius: 10px;
}

#chatimagePreview {
	width: 40px;
	height: 40px;
	background-position: center center;
	background-size: cover;
	display: inline-block;
	margin-right: 0.5rem;
	border-radius: 10px;
}

.ai-chat-log-btn:hover {
	background: #2a76f9;
	color: #FFFFFF;
	text-decoration: none;
}

.ai-chat-form-btn {
	background: #0957DE;
	border-radius: 8px;
	font-style: normal;
	font-weight: 600;
	min-height: 50px;
	line-height: 1.2;
	font-size: 18px;
	display: block;
	text-align: center;
	padding: 1rem;
	color: #FFFFFF !important;
	transition: 0.3s;
	cursor: pointer;
	border: 0;
	width: 100%;
}

.ai-chat-col-right-fooder {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	margin-bottom: 0;
	color: #000C22;
}

.ai-chat-form-btn:hover {
	background: #2a76f9;
	color: #FFFFFF;
	text-decoration: none;
}

.ai-chat-para-btn {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: normal;
	color: #000C22;
}

.ai-chat-col-right-head {
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: normal;
	text-align: center;
	color: #000C22;
}

.ai-chat-col-right-text {
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: normal;
	text-align: center;
	color: #0957DE;
}

.ai-chat-bg-flex {
	margin-top: 10vh;
}

.ai-chat-form-btn-under {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	text-decoration-line: none;
	color: #0957DE;
	display: inline-block;
	word-break: break-word;
}

.chatBox-main-top {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}


.chatBox-main-top-left {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.for-center-box {
	padding: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 1rem;
	background-color: #ffffff;
}

.chatBox-head-a {
	color: rgb(38 45 59 / var(--tw-text-opacity, 1));
	font-weight: 600;
	font-size: 1.5rem;
	text-align: center;
	margin-top: 0.5rem;
}

#send-button {
	border: 1px solid rgb(77 107 254 / var(--tw-bg-opacity, 1));
	padding: .5rem;
	width: 40px;
	height: 40px;

	border-radius: 50%;
	font-size: 1rem;
	display: flex;
	color: rgb(255 255 255 / var(--tw-text-opacity, 1));
	justify-content: center;
	align-items: center;
	background-color: rgb(77 107 254 / var(--tw-bg-opacity, 1));
	cursor: pointer;
}

.input-container {
	display: flex;
	align-items: center;
	justify-self: start;
	background-color: rgba(77, 107, 254, .05);
	padding: 1rem;
	border-radius: 1rem;
	border: 1px solid rgba(77, 107, 254, .2);
}

.widget-container {
	display: flex;
	flex-direction: column;
	height: 100%;
	max-height: 100%;
	overflow: hidden;
	background-color: #fff;
	border-radius: .75rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);

}

.chatBox-scroll .chat-box {
	flex: 1;
	padding: 12px;
	overflow-y: auto;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	line-height: 1.5;
	display: flex;
	flex-direction: column;
}


.user,
.bot {
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 8px;
	max-width: 80%;
	word-wrap: break-word;
}

.user {
	background-color: rgba(0, 184, 217, .05);
	border: 1px solid rgba(0, 184, 217, .2);
	border-radius: .5rem;
	align-self: flex-end;
	text-align: right;
	border-bottom-right-radius: 0;
}

.bot {
	background-color: rgba(77, 107, 254, .05);
	border: 1px solid rgba(77, 107, 254, .2);
	border-radius: .5rem;
	align-self: flex-start;
	border-bottom-left-radius: 0;
}

.typing {
	font-style: italic;
	color: #888;
	margin-bottom: 8px;
}


.suggestions-container {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
	margin-left: 1rem;
	margin-right: 1rem;
}

.suggestions-container button {
	background-color: #e0f0ff;
	border: 1px solid #007bff;
	color: #007bff;
	padding: 6px 12px;
	border-radius: 16px;
	font-size: 14px;
	cursor: pointer;
}

.suggestions-container button:hover {
	background-color: #007bff;
	color: white;
}

.suggestions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 8px 12px;
	background: #f9f9f9;
	border-top: 1px solid #ddd;
	justify-content: flex-start;
}

.suggestion-btn {
	background-color: #e0ecff;
	border: 1px solid #4e9ef7;
	color: #0056b3;
	padding: 6px 10px;
	border-radius: 20px;
	font-size: 13px;
	cursor: pointer;
	transition: background 0.2s;
}

.suggestion-btn:hover {
	background-color: #d0e3ff;
}

.chat-image-preview {
	margin-top: 8px;
	max-width: 100%;
	max-height: 200px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bot h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #333;
}

.bot ul {
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
}

.bot li {
	margin-bottom: 0.3rem;
}

.bot strong {
	font-weight: 600;
}