/* Schiphol Gates – Deelknop. Alles geprefixt met .sgs- zodat het niets in je thema raakt. */

.sgs-flight-trigger {
	cursor: pointer;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 2px;
}
.sgs-flight-trigger:hover {
	text-decoration-style: solid;
}

.sgs-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35em;
	height: 1.35em;
	margin-left: 6px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font-size: 0.85em;
	line-height: 1;
	opacity: 0.65;
	vertical-align: middle;
	transition: opacity 0.15s ease, background 0.15s ease;
}
.sgs-icon:hover {
	opacity: 1;
	background: rgba(127, 127, 127, 0.16);
}
.sgs-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* Desktop-fallback popover */
.sgs-pop {
	position: absolute;
	z-index: 99999;
	min-width: 190px;
	max-width: 260px;
	padding: 6px;
	border-radius: 10px;
	background: #ffffff;
	color: #1a1a1a;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(0, 0, 0, 0.08);
	font-size: 14px;
	line-height: 1.3;
}
@media (prefers-color-scheme: dark) {
	.sgs-pop {
		background: #23262b;
		color: #f0f0f0;
		border-color: rgba(255, 255, 255, 0.12);
	}
}
.sgs-pop__title {
	padding: 6px 10px 4px;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.02em;
	opacity: 0.7;
	text-transform: uppercase;
}
.sgs-pop__item {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 9px 10px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font: inherit;
	text-align: left;
	text-decoration: none;
}
.sgs-pop__item:hover {
	background: rgba(127, 127, 127, 0.14);
}
.sgs-pop__dot {
	flex: 0 0 auto;
	width: 20px;
	text-align: center;
	font-size: 15px;
}
.sgs-pop__note {
	padding: 4px 10px 6px;
	font-size: 11px;
	opacity: 0.6;
}
