        .chat-icon {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ff583c;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s;
        }

        .chat-icon:hover {
            background-color: #0056b3;
        }

        .chat-popup {
            position: fixed;
            bottom: 95px;
            right: 20px;
            width: 25%;
            height: 500px;
            background-color: #f9f9f9;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            display: none;
            flex-direction: column;
            overflow: hidden;
            animation: fadeIn 0.5s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .chat-header {
            background-color: #ff583c;
            color: white;
            padding: 10px;
            text-align: left;
            font-weight: bold;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }

        #chatContainer {
            flex: 1;
            padding: 10px;
            overflow-y: auto;
            background-color: #fff;
            border-bottom: 1px solid #ccc;
        }

        .chat-input {
            display: flex;
            padding: 10px;
            border-top: 1px solid #ccc;
            background-color: #fff;
        }

        .chat-input input {
            flex: 1;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
            outline: none;
			font-size: 13px;
    		height: 20px;
        }

        .chat-input button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 8px 12px;
            margin-left: 8px;
            border-radius: 4px;
            cursor: pointer;
        }

        .chat-input button:hover {
            background-color: #0056b3;
        }

		input::placeholder {
			color: #bbb; /* Light gray */
			opacity: 1;  /* Ensures full color is applied */
		}

        .message-wrapper {
			display: flex;
			flex-direction: column;
			align-items: flex-end;
			margin-bottom: 8px;			
		}

		.user-wrapper {
			align-items: flex-end;
			align-self: flex-end;
		}

        .user-bubble {
            background-color: #e1f5fe;
            padding: 8px;
            border-radius: 8px;
            max-width: 70%;
            word-wrap: break-word;
            text-align: left;
            margin-left: auto;			
        }

        .bot-bubble {
            background-color: #f0f0f0;
            padding: 8px;
            border-radius: 8px;
            max-width: 70%;
            word-wrap: break-word;
            text-align: left;
            margin-right: auto;
        }

		
        .name-label {
            font-size: 12px;
            font-weight: bold;
            color: #555;
            margin-bottom: 5px;
        }

		.message-time {
			font-size: 10px;
			color: gray;
			margin-top: 2px;
			text-align: end;
		}

        /* Responsive Design */
        @media (max-width: 1024px) {
            .chat-popup {
                width: 50%;
            }
        }

        @media (max-width: 768px) {
            .chat-popup {
                width: 90%;
            }
        }

		.user-wrapper .message-time {
			text-align: right;
			align-self: flex-end;
		}
		
		.password-popup input {
            flex: 1;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
            outline: none;			
    		width: 94px;
    		height: 3px;
			margin-left: 45px;
        }

		.clear-chat {
			cursor: pointer;
			margin-left: 8px;
			font-size: 18px;
			color: #ffffff;
			vertical-align: middle;			
			float: right;
		}

		.clear-chat:hover {
			color: darkred;
		}

		.typing-indicator {
			display: inline-flex;
			gap: 4px;
		}

		.typing-indicator .dot {
			width: 3px;
			height: 3px;
			background-color: #555;
			border-radius: 50%;
			animation: typing 1.5s infinite;
		}

		.typing-indicator .dot:nth-child(1) {
			animation-delay: 0s;
		}

		.typing-indicator .dot:nth-child(2) {
			animation-delay: 0.3s;
		}

		.typing-indicator .dot:nth-child(3) {
			animation-delay: 0.6s;
		}

		@keyframes typing {
			0% { opacity: 0.2; transform: translateY(0px); }
			50% { opacity: 1; transform: translateY(-3px); }
			100% { opacity: 0.2; transform: translateY(0px); }
		}
