.board-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: .8rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.board-header h2 {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.session-selector {
	display: flex;
	align-items: center;
	gap: .5rem;
	flex-wrap: wrap;
}

.session-selector label {
	color: var(--ink-dim);
	font-size: .86rem;
}

.session-selector select {
	background: var(--paper-2);
	color: var(--ink);
	border: 1px solid var(--rule-strong);
	padding: .3rem .6rem;
	border-radius: 4px;
	font-size: .86rem;
	cursor: pointer;
}

.session-selector select:focus {
	outline: 2px solid var(--accent);
	outline-offset: 1px;
}

.meet-card.most-recent {
	border-left: 3px solid var(--warn);
}

.meet-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: .5rem;
	flex-wrap: wrap;
}

.meet-title {
	font-weight: 700;
}

.meet-managers {
	color: var(--ink-dim);
	font-size: .82rem;
	margin-left: .6rem;
}

.meet-description {
	color: var(--ink-dim);
	font-size: .88rem;
	margin: .4rem 0 .5rem;
	line-height: 1.5;
}

.problem-categories {
	color: var(--ink-dim);
	font-size: .78rem;
	margin-top: .1rem;
}

/* Fixed proportions so columns line up across every meet's own table,
   since each meet renders a separate <table> that would otherwise
   size its columns to its own content only. */
.problems-table {
	table-layout: fixed;
}

.problems-table th:nth-child(1), .problems-table td:nth-child(1) { width: 13%; }
.problems-table th:nth-child(2), .problems-table td:nth-child(2) { width: 45%; }
.problems-table th:nth-child(3), .problems-table td:nth-child(3) { width: 16%; }
.problems-table th:nth-child(4), .problems-table td:nth-child(4) { width: 26%; }

.no-meets {
	text-align: center;
	padding: 2.5rem 1rem;
	color: var(--ink-dim);
}

.no-meets h3 {
	font-family: var(--serif);
	font-size: 1.15rem;
	margin-bottom: .6rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.board-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.session-selector {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.session-selector select {
		width: 100%;
	}

	.meet-header {
		flex-direction: column;
		align-items: flex-start;
		gap: .3rem;
	}

	.meet-managers {
		margin-left: 0;
	}
}
