#fgdl-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999999;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 10px 16px;
	background: #1d2327;
	color: #f0f0f1;
	font-size: 13px;
	line-height: 1.5;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

#fgdl-topbar .fgdl-topbar__text {
	text-align: center;
}

#fgdl-topbar .fgdl-topbar__creds {
	display: inline-block;
	margin-left: 8px;
}

#fgdl-topbar code {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	padding: 1px 6px;
	border-radius: 3px;
	font-size: 12px;
}

#fgdl-topbar .fgdl-topbar__btn {
	flex-shrink: 0;
	background: #4caf50;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	padding: 7px 16px;
	border-radius: 20px;
	white-space: nowrap;
	transition: background .15s;
}

#fgdl-topbar .fgdl-topbar__btn:hover,
#fgdl-topbar .fgdl-topbar__btn:focus {
	background: #43a047;
	color: #fff;
}

body.fgdl-has-topbar {
	margin-top: var( --fgdl-topbar-height, 44px ) !important;
}

@media (max-width: 600px) {
	#fgdl-topbar {
		font-size: 12px;
		padding: 8px 12px;
	}
	#fgdl-topbar .fgdl-topbar__creds {
		display: block;
		margin-left: 0;
	}
}
