.schedule-section {
	margin-bottom: 40px;
}

.schedule-section h2 {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin: 0 0 20px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #17755A;
	text-transform: uppercase;
}

/* Results section - similar styling to schedule */
.results-section {
	margin-bottom: 40px;
}

.results-section h2 {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin: 0 0 20px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #17755A;
	text-transform: uppercase;
}

.match-item {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 15px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	display: grid;
	grid-template-columns: 150px 1fr auto 1fr auto;
	grid-template-rows: auto;
	gap: 30px;
	align-items: center;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.match-center-col {
	grid-column: 5;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 140px;
}

.match-center-btn,
.match-center-btn:visited {
	display: inline-block;
	padding: 9px 16px;
	border: 1px solid #bbb;
	border-radius: 4px;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #444 !important;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 0.15s, color 0.15s;
}

.match-center-btn:hover {
	border-color: #17755A;
	color: #17755A !important;
}

.match-info {
	grid-column: 1;
	grid-row: 1;
	text-align: left;
	padding: 0;
	border: none;
}

.match-date-top {
	font-size: 12px;
	color: #666;
	margin-bottom: 3px;
}

.match-date-bottom {
	font-size: 11px;
	color: #888;
	margin-bottom: 3px;
}

.match-date-day {
	font-size: 0;
	color: #333;
	font-weight: bold;
}

.match-date-day .date-text {
	display: inline;
	font-size: 11px;
	color: #333;
	font-weight: bold;
}

.match-date-day .time-text {
	display: inline;
	font-size: 11px;
	color: #333;
	font-weight: bold;
}

.team {
	display: flex;
	align-items: center;
	gap: 10px;
}

.team-home {
	justify-content: flex-end;
	text-align: right;
	grid-column: 2;
	grid-row: 1;
}

.team-away {
	justify-content: flex-start;
	text-align: left;
	grid-column: 4;
	grid-row: 1;
}

.team-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.team-name {
	font-size: 16px;
	font-weight: bold;
	color: #333;
}

.match-time {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	text-align: center;
	min-width: 60px;
	grid-column: 3;
	grid-row: 1;
}

/* Match score styling for results */
.match-score {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	text-align: center;
	min-width: 60px;
	grid-column: 3;
	grid-row: 1;
}

@media (max-width: 768px) {
	.schedule-section {
		margin-bottom: 25px;
	}
	
	.schedule-section h2 {
		font-size: 15px;
		margin-bottom: 10px;
		padding-bottom: 8px;
	}
	
	.results-section {
		margin-bottom: 25px;
	}
	
	.results-section h2 {
		font-size: 15px;
		margin-bottom: 10px;
		padding-bottom: 8px;
	}
	
	.match-item {
		padding: 0 !important;
		margin-bottom: 10px;
		grid-template-columns: 1fr !important;
		grid-template-rows: auto auto auto !important;
		gap: 0 !important;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}
	
	.match-info {
		text-align: left !important;
		padding: 8px 10px !important;
		background: #f8f8f8 !important;
		border-top: 1px solid #eee !important;
		margin-top: 0;
		grid-column: 1 !important;
		grid-row: 3 !important;
	}
	
	.match-date-top {
		font-size: 11px;
		margin-bottom: 3px;
	}
	
	.match-date-bottom {
		display: none;
	}
	
	.match-date-day {
		font-size: 0;
		color: #333;
		font-weight: bold;
	}
	
	.match-date-day .date-text {
		display: inline;
		font-size: 12px;
		color: #333;
		font-weight: bold;
	}
	
	.match-date-day .time-text {
		display: inline;
		font-size: 12px;
		color: #333;
		font-weight: bold;
	}
	
	.team {
		width: 100% !important;
		justify-content: flex-start !important;
		text-align: left !important;
		padding: 10px !important;
		gap: 10px;
		grid-column: 1 !important;
		position: relative;
	}
	
	.team-home {
		grid-row: 1 !important;
		flex-direction: row-reverse !important;
	}
	
	.team-away {
		grid-row: 2 !important;
		border-top: 1px solid #eee;
	}
	
	.team-name {
		font-size: 13px;
		flex: 1;
	}
	
	/* Add score display for results on mobile */
	.results-section .team-home::before {
		content: attr(data-score);
		font-size: 14px;
		font-weight: bold;
		color: #333;
	}
	
	.results-section .team-away::after {
		content: attr(data-score);
		font-size: 14px;
		font-weight: bold;
		color: #333;
	}
	
	.match-time {
		display: none !important;
	}

	.match-score {
		display: none !important;
	}

	.team-logo {
		width: 30px;
		height: 30px;
		flex-shrink: 0;
	}

	.match-center-col {
		grid-column: 1 !important;
		grid-row: 4 !important;
		min-width: 0;
		justify-content: flex-start;
		padding: 0 10px 8px;
	}

	.match-center-btn {
		border: none;
		padding: 0;
		font-size: 12px;
		font-weight: normal;
		letter-spacing: 0;
		text-transform: none;
		color: #17755A;
		border-radius: 0;
	}

	.match-center-btn:hover {
		border-color: transparent;
		color: #0f5240;
		text-decoration: underline;
	}
}
