#toggleChatBtn {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: #d30000;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            z-index: 1000;
			
        }

        #chatContainer {
            display: none;
            position: fixed;
            bottom: 70px;
            left: 20px;
            width: 300px;
            height: 400px;
            background: white;
            border: 1px solid #ccc;
            border-radius: 10px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
            overflow: hidden;
           
            flex-direction: column;
			display: none;
			opacity: 0;
			transition: opacity 0.3s ease;
            z-index: 999;
        }
		#chatContainer.show {
			display: flex;
			opacity: 1;
		}
        #chatBox {
            flex: 1;
            overflow-y: auto;
            padding: 10px;
            background: #f9f9f9;
        }

        #chatForm {
            display: flex;
        }

        #chatForm input {
            flex: 1;
            padding: 10px;
            border: none;
        }

        #chatForm button {
            padding: 10px;
            
			border-radius: 0px 10px px 8px 0px;
            background: #d30000;
            color: white;
        }
		.chat-bubble {
			max-width: 80%;
			padding: 8px 12px;
			margin: 5px 0;
			border-radius: 15px;
			position: relative;
			display: inline-block;
			word-wrap: break-word;
			font-size: 14px;
		}

		.chat-user {
			background-color: #dcf8c6;
			align-self: flex-end;
			border-bottom-right-radius: 0;
		}

		.chat-system {
			background-color: #e4e6eb;
			border-bottom-left-radius: 0;
		}

		.chat-meta {
			font-size: 10px;
			color: gray;
			margin-top: 2px;
		}

		.chat-line {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}

		.chat-line.user {
			align-items: flex-end;
		}
		.chat-operator {
			background-color: #ffe6cc;
			border-bottom-left-radius: 0;
		}

		.chat-system {
			background-color: #e4e6eb;
			border-bottom-left-radius: 0;
		}
		.emoji-item {
			font-size: 20px;
			margin: 5px;
			cursor: pointer;
			display: inline-block;
			transition: transform 0.1s;
		}
		.emoji-item:hover {
			transform: scale(1.3);
		}
		#emojiPicker {
			z-index: 999;
			border-radius: 8px;
		}