.clubcontainer 
{
	margin: 4px auto;
	padding: 15px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Club Header */
.club-header 
{
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 5px;
	padding: 10px;
	background: lightgreen;
	color: #000;
	border-radius: 6px;
}

/* Main Content Blocks */
.club-info 
{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}

/* Sections */
.left-section, .middle-section, .right-section { flex: 1; }

.left-section p, .right-section p, .middle-section p 
{
	margin: 5px 0;
	font-weight: bold;
}

.middle-section 
{
	display: none; /* Initially hidden */
}

.right-section ul 
{
	list-style: none;
	margin: 0;
}
.right-section ul li { margin-bottom: 2px; }

.club-notes 
{
	margin-top: 15px;
	padding: 10px;
	background: #f9f9f9;
	font-size: 0.95em;
	border-radius: 6px;
	text-align: center;
}

/* Responsive Design */
@media (max-width: 600px) 
{
	.club-info 
	{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.left-section, .middle-section, .right-section { text-align: center; }
}

/* Print settings */
@media print 
{
	.clubcontainer { page-break-inside: avoid; }
}
