/* =========================================================
   Streamworks — Horizontal tabs
   Loaded by auth-shell-app; remotes use stream-* classes.
   ========================================================= */

.stream-tabs-horizontal {
	display: flex;
	gap: 36px;
	padding: 0 8px;
	margin-top: -8px;
	border-bottom: 1px solid var(--stream-color-modal-border);
	height: 40px;
	align-items: center;
	flex-shrink: 0;
}

.stream-tabs-horizontal a,
.stream-tabs-horizontal .stream-tab-link {
	position: relative;
	height: 40px;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--stream-color-text-muted);
	font-size: 14px;
	transition: color 0.2s ease;
	cursor: pointer;
	background: none;
	border: none;
	font: inherit;
	padding: 0;
}

.stream-tabs-horizontal a:hover,
.stream-tabs-horizontal .stream-tab-link:hover {
	color: var(--stream-color-text);
}

.stream-tabs-horizontal a.stream-active,
.stream-tabs-horizontal .stream-tab-link.stream-active {
	color: var(--stream-color-primary);
	font-weight: 600;
}

.stream-tabs-horizontal a.stream-active::after,
.stream-tabs-horizontal .stream-tab-link.stream-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var(--stream-color-primary);
	border-radius: 10px;
}
