body {
	background: #f5f7fa;
	color: #1f2933;
	font-family: Arial, Helvetica, sans-serif;
}
.app-shell {
	display: flex;
	min-height: 100vh;
}
.sidebar {
	width: 230px;
	background: #183447;
	color: #fff;
	padding: 18px 14px;
	flex: 0 0 230px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 18px;
	margin-bottom: 14px;
	border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand-mark {
	width: 42px;
	height: 42px;
	border-radius: 6px;
	background: #18a058;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}
.brand-title {
	font-weight: 700;
	font-size: 16px;
}
.brand-sub,
.muted {
	color: #7b8794;
	font-size: 12px;
}
.sidebar .brand-sub {
	color: #c8d5df;
}
.nav-link {
	display: block;
	color: #d9e2ec;
	padding: 10px 12px;
	border-radius: 6px;
	margin-bottom: 5px;
	text-decoration: none;
}
.nav-link:hover,
.nav-link:focus {
	color: #fff;
	background: rgba(255,255,255,.12);
	text-decoration: none;
}
.nav-link.active {
	background: #18a058;
	color: #fff;
}
.main {
	min-width: 0;
	flex: 1;
}
.topbar {
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 22px;
	background: #fff;
	border-bottom: 1px solid #e3e8ef;
}
.topbar h1 {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
}
.content {
	padding: 22px;
}
.company-form {
	min-width: 230px;
}
.panel {
	background: #fff;
	border: 1px solid #e3e8ef;
	border-radius: 6px;
	margin-bottom: 18px;
	box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
.panel-head {
	padding: 14px 16px;
	border-bottom: 1px solid #e3e8ef;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.panel-head h2 {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
}
.panel-body {
	padding: 16px;
}
.metric {
	background: #fff;
	border: 1px solid #e3e8ef;
	border-radius: 6px;
	padding: 14px;
	min-height: 92px;
	margin-bottom: 15px;
}
.metric-label {
	color: #7b8794;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
}
.metric-value {
	font-size: 25px;
	font-weight: 700;
	margin-top: 6px;
}
.login-wrap {
	max-width: 410px;
	margin: 75px auto;
}
.tag {
	display: inline-block;
	padding: 5px 8px;
	background: #e8f5ee;
	border: 1px solid #bfe7d0;
	border-radius: 4px;
	margin: 4px 4px 0 0;
}
.tag button {
	border: 0;
	background: transparent;
	color: #a61b1b;
	font-weight: 700;
}
.table-small {
	font-size: 12px;
}
.message-preview {
	white-space: pre-wrap;
	background: #f8fafc;
	border: 1px solid #e3e8ef;
	border-radius: 4px;
	padding: 10px;
}
@media (max-width: 760px) {
	.app-shell {
		display: block;
	}
	.sidebar {
		width: 100%;
	}
	.topbar {
		height: auto;
		display: block;
	}
	.company-form {
		min-width: 0;
		margin-top: 10px;
	}
}
