/* ── Wrapper ── */
.member-directory-wrap {
	margin: 1em 0;
	font-family: inherit;
}

.member-directory-notice {
	color: #555;
	font-style: italic;
}

/* ── Inactive toggle ── */
.member-directory-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 1em;
	cursor: pointer;
	font-size: 0.95em;
}

/* ── Table (desktop) ── */
.member-directory-table-wrap {
	overflow-x: auto;
}

.member-directory-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9em;
}

.member-directory-table thead th {
	font-weight: bold;
	text-align: left;
	padding: 9px 12px;
	background-color: #f0f0f0;
	border-bottom: 2px solid #ccc;
	white-space: nowrap;
}

.member-directory-table th.md-sortable {
	cursor: pointer;
	user-select: none;
}

.member-directory-table th.md-sortable:hover {
	background-color: #e2e2e2;
}

.md-chevron {
	font-style: normal;
	margin-left: 4px;
	color: #666;
}

.member-directory-table tbody td {
	padding: 7px 12px;
	border-bottom: 1px solid #ddd;
	vertical-align: top;
}

/* ── Cards (mobile) ── */
.member-directory-cards {
	display: none;
}

.md-card {
	padding: 14px 16px;
	margin-bottom: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 0.95em;
	line-height: 1.6;
}

.md-card-name {
	font-weight: bold;
	font-size: 1.05em;
	margin-bottom: 4px;
}

.md-label {
	font-weight: bold;
	color: #555;
}

/* ── Responsive breakpoint ── */
@media (max-width: 767px) {
	.member-directory-table-wrap {
		display: none;
	}

	.member-directory-cards {
		display: block;
	}
}
