/* Banner styles */
.banner {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
	background: #111;
	color: #fff;
	z-index: 1000;
	overflow: hidden;
	border-bottom: 1px solid rgba(255,255,255,0.15);
}

.banner-track {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	white-space: nowrap;
	display: flex;
	align-items: center;
}

.banner-text {
	padding-left: 16px;
	padding-right: 16px;
	font-family: 'IRANSansWebFarsiNumbers';
	font-size: 16px;
	line-height: 40px;
	letter-spacing: 0.2px;
	opacity: 0.95;
}

/* Ensure page content is not hidden under fixed banner */
.demo {
	padding-top: 56px;
	padding-left: 16px;
	padding-right: 16px;
	max-width: 900px;
	margin: 0 auto;
}

/* Responsive tweaks */
@media (max-width: 600px) {
	.banner { height: 42px; }
	.banner-text { font-size: 14px; line-height: 42px; }
	.demo { padding-top: 58px; }
}
