 #jac-chatbot {
            position: fixed;
            right: 25px;
            bottom: 25px;
            z-index: 999999;
            font-family: Arial, sans-serif;
        }

        #jac-chat-button {
            width: 60px;
            height: 60px;
            border: none;
            border-radius: 50%;
            background: #111111;
            color: #ffffff;
            font-size: 25px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
        }

        #jac-chat-window {
            display: none;
            position: absolute;
            right: 0;
            bottom: 75px;
            width: 360px;
            height: 500px;
            background: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
        }

        .jac-chat-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px;
            background: #111111;
            color: #ffffff;
        }

        .jac-chat-header strong {
            display: block;
            font-size: 17px;
        }

        .jac-chat-header span {
            display: block;
            margin-top: 4px;
            font-size: 12px;
            opacity: 0.8;
        }

        #jac-chat-close {
            border: none;
            background: transparent;
            color: #ffffff;
            font-size: 28px;
            cursor: pointer;
        }

        #jac-chat-messages {
            height: 350px;
            padding: 15px;
            overflow-y: auto;
            background: #f7f7f7;
        }

        .jac-message {
            max-width: 80%;
            margin-bottom: 12px;
            padding: 10px 13px;
            border-radius: 12px;
            font-size: 14px;
            line-height: 1.5;
			box-sizing: border-box;
			overflow-wrap: anywhere;
			word-break: break-word;
			white-space: normal;
        }

        .jac-bot-message {
            background: #ffffff;
            color: #222222;
            border: 1px solid #eeeeee;
        }
		
		.jac-bot-message a {
			color: #0066cc;
			text-decoration: underline;
			overflow-wrap: anywhere;
		}

		.jac-bot-message a:hover {
			text-decoration: none;
		}

        .jac-user-message {
            margin-left: auto;
            background: #111111;
            color: #ffffff;
        }

        .jac-chat-input-area {
            display: flex;
            gap: 8px;
            padding: 12px;
            background: #ffffff;
            border-top: 1px solid #eeeeee;
        }

        #jac-chat-input {
            flex: 1;
            padding: 11px;
            border: 1px solid #dddddd;
            border-radius: 8px;
            outline: none;
        }

        #jac-send-button {
            padding: 10px 15px;
            border: none;
            border-radius: 8px;
            background: #111111;
            color: #ffffff;
            cursor: pointer;
        }

        @media (max-width: 480px) {

            #jac-chatbot {
                right: 15px;
                bottom: 15px;
            }

            #jac-chat-window {
                position: fixed;
                right: 15px;
                left: 15px;
                bottom: 90px;
                width: auto;
                height: 70vh;
            }

            #jac-chat-messages {
                height: calc(70vh - 145px);
				box-sizing: border-box;
				overflow-x: hidden;
            }
        }