/* FrachtImperium server status; scoped to the existing upper menu. */
.fi-topbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 -10px;
	background: #273844 url("./images/navmenu.gif") repeat-x;
}

.fi-topbar ul#navmenu {
	display: flex;
	flex: 1 0 auto;
	flex-wrap: wrap;
	max-width: 100%;
	height: auto;
	min-height: 46px;
	margin: 0;
	background: none;
}

.fi-topbar ul#navmenu li { float: none; }

.fi-server-status {
	box-sizing: border-box;
	flex: 0 0 auto;
	max-width: 100%;
	margin: 4px 12px 4px auto;
	padding: 5px 0 5px 16px;
	color: #e9eef2;
	font-family: Arial, Helvetica, sans-serif;
	text-align: right;
	line-height: 1.3;
}

.fi-server-status__main {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 7px;
	font-size: 12px;
	font-weight: bold;
}

.fi-server-status__dot {
	display: inline-block;
	flex: 0 0 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #aab5be;
}

.fi-server-status[data-state="online"] .fi-server-status__dot { background: #74d39a; }
.fi-server-status[data-state="offline"] .fi-server-status__dot { background: #ff8181; }
.fi-server-status[data-state="online"] .fi-server-status__label { color: #a6ebc1; }
.fi-server-status[data-state="offline"] .fi-server-status__label { color: #ffb3b3; }

.fi-server-status__time {
	display: block;
	margin-top: 2px;
	color: #c4cfd7;
	font-size: 10px;
	font-weight: normal;
}

@media (max-width: 700px) {
	.fi-topbar { margin: 0 -5px; }
	.fi-topbar ul#navmenu { display: none; }
	.fi-server-status {
		flex-basis: 100%;
		margin: 0;
		padding: 9px 12px;
	}
}
