/* ==========================================================================
   Blood Bank > Donor List Manager — front-end page-chrome styling for the
   existing "রক্তদাতা তালিকা" / Donor List page (`/donors` route,
   assets/js/views/donors.js). Loaded AFTER assets/css/app.css.

   Every rule here is scoped under `.bbb-dlm-*` classes that
   assets/js/views/donors.js only ever adds around its EXISTING markup
   when Blood Bank > Donor List Manager settings say to. Nothing in this
   file fires unless that JS adds the class/element, so the page's
   existing look is unaffected until an admin changes a setting.
   ========================================================================== */

.bbb-dlm-banner {
	position: relative;
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 14px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
}

.bbb-dlm-banner::after {
	content: '';
	position: absolute;
	inset: 0;
	background: #000;
	opacity: var( --bbb-dlm-banner-overlay, 0 );
}

.bbb-dlm-banner-title {
	position: relative;
	z-index: 1;
	padding: 14px 16px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-shadow: 0 1px 4px rgba( 0, 0, 0, .4 );
}

.bbb-dlm-intro {
	font-size: 13.5px;
	color: var( --text-muted, #6b6b6b );
	margin: 0 0 14px;
	line-height: 1.5;
}

.bbb-dlm-empty-state {
	text-align: center;
	color: var( --text-muted, #6b6b6b );
	padding: 30px 16px;
}

.bbb-dlm-empty-state img {
	max-width: 140px;
	margin: 0 auto 12px;
	display: block;
}

#bbb-view.bbb-dlm-bg-solid,
#bbb-view.bbb-dlm-bg-image {
	background: var( --bbb-dlm-bg, transparent );
	border-radius: 16px;
}

#bbb-view.bbb-dlm-bg-image {
	background-size: cover;
	background-position: center;
}
