/* Hero banner */
.dash-hero {
	height: 200px;
	border-radius: 0;
	background-size: cover;
	background-position: center;
	margin-bottom: 24px;
	margin-top: -22px;
	position: relative;
	overflow: hidden;
	width: 100vw;
	left: 50%;
	transform: translateX(-50%);
}

.dash-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 28px;
}

.dash-hero--logo {
	height: auto;
	background: #f5f7fa;
	border: 1px solid #e0e5ec;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 24px;
}

.dash-hero-logo {
	height: 72px;
	max-width: 160px;
	object-fit: contain;
}

.dash-hero-welcome {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0,0,0,0.5);
	margin-bottom: 4px;
}

.dash-hero-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255,255,255,0.75);
	margin-bottom: 4px;
}

.dash-hero--logo .dash-hero-label {
	color: #888;
}

.dash-hero-name {
	font-size: 22px;
	color: #fff;
	margin: 0;
	text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.dash-hero--logo .dash-hero-name {
	color: #222;
	text-shadow: none;
}

/* Stats */
.dash-stats {
	margin-bottom: 4px;
}

.dash-stat-card {
	display: block;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 16px 12px;
	text-align: center;
	margin-bottom: 16px;
	color: inherit;
	text-decoration: none;
	transition: box-shadow 0.15s, border-color 0.15s;
}

.dash-stat-card:hover {
	border-color: #aaa;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	text-decoration: none;
	color: inherit;
}

.dash-stat-num {
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	color: #2c6496;
	margin-bottom: 6px;
}

.dash-stat-label {
	font-size: 12px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.dash-stat-label .glyphicon {
	margin-right: 4px;
}

.dash-stat-sub {
	font-size: 11px;
	color: #2c7ab5;
	margin-top: 3px;
}

.dash-checklist .list-group-item {
	padding: 10px 14px;
}

.dash-check-done {
	color: #555;
}

.dash-check-todo {
	font-weight: 500;
}

.dash-quickactions .btn {
	margin-bottom: 8px;
	text-align: left;
}

.dash-quickactions .btn .glyphicon {
	margin-right: 6px;
}
