#travelbot-bubble {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #0b5f6b;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0,0,0,0.25);
	z-index: 999999;
	font-size: 26px;
	transition: transform 0.15s ease;
}
#travelbot-bubble:hover {
	transform: scale(1.06);
}

#travelbot-window {
	position: fixed;
	bottom: 96px;
	right: 24px;
	width: 340px;
	max-width: calc(100vw - 32px);
	height: 460px;
	max-height: calc(100vh - 140px);
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.25);
	display: none;
	flex-direction: column;
	overflow: hidden;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
#travelbot-window.travelbot-open {
	display: flex;
}

#travelbot-header {
	background: #0b5f6b;
	color: #fff;
	padding: 14px 16px;
	font-weight: 600;
	font-size: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#travelbot-header span.travelbot-close {
	cursor: pointer;
	font-size: 18px;
	opacity: 0.85;
}

#travelbot-messages {
	flex: 1;
	overflow-y: auto;
	padding: 14px;
	background: #f7f7f7;
}

.travelbot-msg {
	margin-bottom: 10px;
	max-width: 85%;
	padding: 9px 12px;
	border-radius: 12px;
	font-size: 13.5px;
	line-height: 1.4;
}
.travelbot-msg.user {
	background: #0b5f6b;
	color: #fff;
	margin-left: auto;
	border-bottom-right-radius: 2px;
}
.travelbot-msg.bot {
	background: #fff;
	border: 1px solid #e2e2e2;
	color: #222;
	border-bottom-left-radius: 2px;
}
.travelbot-msg.bot a {
	color: #0b5f6b;
	font-weight: 600;
}
.travelbot-msg.typing {
	font-style: italic;
	color: #888;
}

#travelbot-inputbar {
	display: flex;
	border-top: 1px solid #eee;
	padding: 10px;
	gap: 8px;
}
#travelbot-input {
	flex: 1;
	border: 1px solid #ddd;
	border-radius: 20px;
	padding: 8px 14px;
	font-size: 13.5px;
	outline: none;
}
#travelbot-send {
	background: #0b5f6b;
	color: #fff;
	border: none;
	border-radius: 20px;
	padding: 8px 16px;
	font-size: 13.5px;
	cursor: pointer;
}
#travelbot-send:disabled {
	opacity: 0.5;
	cursor: default;
}
