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

.board-header h2 {
	font-size: 1.8rem;
	color: #3498db;
	margin: 0;
}

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

.session-selector label {
	color: #95a5a6;
	font-size: 0.9rem;
}

.session-selector select {
	background: #2d2d2d;
	color: #e0e0e0;
	border: 2px solid #3498db;
	padding: 0.6rem 1.2rem;
	border-radius: 6px;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s ease;
	min-width: 200px;
}

.session-selector select:hover {
	border-color: #2980b9;
	background: #353535;
}

.session-selector select:focus {
	outline: none;
	border-color: #5dade2;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.session-info-card {
	background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: white;
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
	box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.session-info-card h3 {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}

.session-details {
	font-size: 0.95rem;
	opacity: 0.95;
}

.meet-card {
	background: #2d2d2d;
	border-left: 4px solid #3498db;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meet-card.most-recent {
	border-left-color: #e74c3c;
	background: linear-gradient(135deg, #2d2d2d 0%, #3a2d2d 100%);
}

.meet-card:hover {
	transform: translateX(4px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

.meet-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #3498db;
}

.meet-card.most-recent .meet-title {
	color: #e74c3c;
}

.meet-date {
	color: #95a5a6;
	font-size: 0.9rem;
}

.meet-theme {
	background: rgba(52, 152, 219, 0.2);
	color: #3498db;
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.85rem;
	margin-top: 0.5rem;
	display: inline-block;
}

.meet-managers {
	margin-top: 0.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.meet-manager {
	background: rgba(46, 204, 113, 0.2);
	color: #2ecc71;
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.85rem;
	display: inline-block;
}

.meet-description {
	color: #bdc3c7;
	font-size: 0.95rem;
	margin-top: 1rem;
	margin-bottom: 0;
	line-height: 1.5;
}

.contest-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: white;
	padding: 0.6rem 1.4rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
	white-space: nowrap;
}

.contest-button:hover {
	background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
	color: white;
}

.problems-section {
	margin: 1rem 0;
}

.problems-section h4 {
	color: #95a5a6;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.problem-item {
	background: #252525;
	padding: 0.8rem;
	margin-bottom: 0.5rem;
	border-radius: 4px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.problem-info {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.problem-platform {
	background: #34495e;
	color: #ecf0f1;
	padding: 0.3rem 0.7rem;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.problem-title {
	color: #e0e0e0;
	font-size: 0.9rem;
	text-transform: capitalize;
}

.problem-links {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.problem-link, .solution-link {
	padding: 0.4rem 1rem;
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.85rem;
	transition: all 0.2s ease;
	font-weight: 500;
}

.problem-link {
	background: #27ae60;
	color: white;
}

.problem-link:hover {
	background: #229954;
	transform: translateY(-1px);
}

.solution-link.has-solution {
	background: #e67e22;
	color: white;
}

.solution-link.has-solution:hover {
	background: #d35400;
	transform: translateY(-1px);
}

.solution-link.no-solution {
	background: #7f8c8d;
	color: #bdc3c7;
	cursor: not-allowed;
	opacity: 0.6;
}

.problem-link.no-link,
.solution-link.no-link {
	cursor: default;
	opacity: 0.8;
}

.algo-toggle {
	background: #34495e;
	color: #ecf0f1;
	border: none;
	padding: 0.7rem 1.2rem;
	border-radius: 6px;
	cursor: pointer;
	font-size: 0.9rem;
	margin-top: 1rem;
	transition: all 0.2s ease;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-weight: 500;
}

.algo-toggle:hover {
	background: #445566;
	transform: translateY(-1px);
}

.toggle-icon {
	transition: transform 0.2s ease;
	display: inline-block;
	font-size: 0.8rem;
}

.algo-toggle.active .toggle-icon {
	transform: rotate(90deg);
}

.algo-content {
	display: none;
	margin-top: 1rem;
	border-radius: 4px;
	overflow: hidden;
	animation: slideDown 0.3s ease;
}

.algo-content.active {
	display: block;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.algo-content pre {
	margin: 0;
	border-radius: 4px;
}

.algo-content code {
	font-size: 0.85rem;
	line-height: 1.5;
}

.no-meets {
	text-align: center;
	padding: 4rem 2rem;
	color: #95a5a6;
}

.no-meets h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	.board-header {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.session-selector {
		width: 100%;
	}
	
	.session-selector select {
		flex: 1;
	}
	
	.problem-item {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.problem-links {
		width: 100%;
	}
}