/* TravelKon App Banner */
#tkab-banner {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 999999;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 10px;
	background: #ffffff;
	color: #111111;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	transform: translateY(140%);
	transition: transform 0.35s ease;
}

#tkab-banner.tkab-visible {
	transform: translateY(0);
}

#tkab-banner .tkab-logo {
	width: 40px;
	height: 40px;
	border-radius: 9px;
	object-fit: contain;
	flex: 0 0 auto;
}

#tkab-banner .tkab-body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

#tkab-banner .tkab-title {
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#tkab-banner .tkab-subtitle {
	font-size: 11.5px;
	color: #555555;
	line-height: 1.25;
	margin-top: 1px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#tkab-banner .tkab-badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
}

#tkab-banner .tkab-badge img {
	height: 28px;
	width: auto;
	display: block;
}

#tkab-banner .tkab-close {
	flex: 0 0 auto;
	align-self: flex-start;
	width: 20px;
	height: 20px;
	border: none;
	background: transparent;
	color: #999999;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

@media (prefers-color-scheme: dark) {
	#tkab-banner {
		background: #1c1c1e;
		color: #ffffff;
	}
	#tkab-banner .tkab-subtitle {
		color: #b0b0b0;
	}
	#tkab-banner .tkab-close {
		color: #888888;
	}
}
