/* VibeCode Notice Bar - front end */
.lwab-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 10px 44px 10px 16px;
	position: relative;
	line-height: 1.4;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	z-index: 9999;
}

.lwab-dismissed .lwab-bar {
	display: none;
}

.lwab-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	max-width: 1100px;
}

.lwab-bar__message {
	margin: 0;
}

.lwab-bar__button {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.92em;
	white-space: nowrap;
	transition: opacity 0.15s ease;
}

.lwab-bar__button:hover,
.lwab-bar__button:focus {
	opacity: 0.85;
}

.lwab-bar__close {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: 0;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 8px;
	opacity: 0.7;
}

.lwab-bar__close:hover,
.lwab-bar__close:focus {
	opacity: 1;
}

.lwab-bar--sticky {
	position: sticky;
	top: 0;
}

.lwab-bar--bottom.lwab-bar--sticky {
	position: fixed;
	bottom: 0;
	top: auto;
	left: 0;
}

@media (prefers-reduced-motion: reduce) {
	.lwab-bar__button {
		transition: none;
	}
}
