/* 2026-06-21 v1.0
 * - Added Zwarte Plasje styling for the shared minibar.
 */

.minibar-wrapper {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 889;
	display: grid;
	grid-template-columns: 1fr 36px;
	gap: 10px;
	align-items: center;
	min-height: 38px;
	padding: 8px 18px;
	transform: translateY(-120%);
	background-color: var(--color_darkest);
	color: var(--color_lightgray);
	text-align: center;
	transition: transform .25s ease, opacity .25s ease;
	opacity: 0;
}

body.minibarshown .minibar-wrapper {
	transform: translateY(0);
	opacity: 1;
}

.minibar-wrapper,
.minibar-wrapper * {
	color: var(--color_lightgray)!important;
}

.minibar-wrapper-inner {
	line-height: 1.35;
}

.minibar-wrapper-inner a {
	color: var(--color_contrast)!important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

a[onClick*="closeMinibar"] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin: 0px;
	text-decoration: none;
	cursor: pointer;
}

a[onClick*="closeMinibar"]::before {
	content: "\f00d";
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	color: var(--color_contrast);
}

body.minibarshown .logo {
	top: 76px;
}

@media only screen and (max-width: 760px) {
	.minibar-wrapper {
		grid-template-columns: 1fr 30px;
		padding: 8px 12px;
		text-align: left;
	}

	.minibar-wrapper-inner {
		font-size: 14px;
	}

	body.minibarshown .logo {
		top: 82px;
	}
}
