/* Enhanced Schedule Section Styles */
.schedule-list-section {
	background: var(--light-gray);
	min-height: 100vh;
}

/* View Toggle Buttons */
.view-toggle-container {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.view-toggle {
	display: inline-flex;
	background: var(--light-gray);
	border-radius: 15px;
	padding: 4px;
	position: relative;
	overflow: hidden;
}

.view-toggle-btn {
	background: transparent;
	border: none;
	padding: 12px 24px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--charcoal);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 2;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.view-toggle-btn i {
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.view-toggle-btn.active {
	background: var(--white);
	color: var(--woodley-blue);
	box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
	transform: translateY(-1px);
}

.view-toggle-btn.active i {
	color: var(--basketball-orange);
}

.view-toggle-btn:hover:not(.active) {
	color: var(--woodley-blue);
	transform: translateY(-1px);
}

/* Sort Container */
.sort-container {
	display: none;
	justify-content: center;
	margin-top: 15px;
}

.sort-container.show {
	display: flex;
}

.sort-select-wrapper {
	position: relative;
	min-width: 200px;
}

#sort-select {
	width: 100%;
	padding: 12px 40px 12px 16px;
	border: 2px solid rgba(0, 102, 204, 0.1);
	border-radius: 12px;
	background: var(--white);
	color: var(--charcoal);
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	appearance: none;
}

#sort-select:focus {
	outline: none;
	border-color: var(--woodley-blue);
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.sort-select-wrapper::after {
	content: '\F285';
	font-family: 'bootstrap-icons';
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--basketball-orange);
	pointer-events: none;
	font-size: 1rem;
}

/* Schedule Filters */
.schedule-filters {
	background: var(--white);
	padding: 25px;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
	backdrop-filter: blur(10px);
}

.schedule-filters .form-select,
.schedule-filters .form-control {
	border: 2px solid rgba(0, 102, 204, 0.1);
	border-radius: 12px;
	padding: 14px 18px;
	font-size: 0.9rem;
	font-weight: 500;
	background: var(--white);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.schedule-filters .form-select:focus,
.schedule-filters .form-control:focus {
	border-color: var(--woodley-blue);
	box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
	outline: none;
}

/* Custom Clear Filters Button */
.clear-filters-btn {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.2));
	color: var(--basketball-orange);
	border: 2px solid rgba(255, 107, 53, 0.2);
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.6rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	top: 8px;
	position: relative;
}

.clear-filters-btn:hover {
	background: var(--basketball-orange);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.clear-filters-btn i {
	transition: transform 0.3s ease;
}

.clear-filters-btn:hover i {
	transform: rotate(90deg);
}

/* Enhanced Schedule Cards for Grid View */
.grid-view {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 25px;
}

.schedule-card-wrapper {
	display: contents;
}

.schedule-card-athletic {
	background: var(--white);
	border: none;
	border-radius: 24px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	border-top: 4px solid transparent;
}

.schedule-card-athletic.upcoming {
	border-top-color: var(--woodley-green);
	background: linear-gradient(135deg, rgba(0, 204, 102, 0.02), rgba(0, 204, 102, 0.05));
}

.schedule-card-athletic.completed {
	border-top-color: var(--woodley-blue);
	background: linear-gradient(135deg, rgba(0, 102, 204, 0.02), rgba(0, 102, 204, 0.05));
}

.schedule-card-athletic.cancelled {
	border-top-color: #dc3545;
	background: linear-gradient(135deg, rgba(220, 53, 69, 0.02), rgba(220, 53, 69, 0.05));
	opacity: 0.8;
}

.schedule-card-athletic:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Enhanced Status Indicators */
.status-location-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.game-status-indicator {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
	border: 2px solid;
}

.game-type-indicator {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding-left: 16px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--charcoal);
	opacity: 0.8;
}

/* Game Type Colors - Simple text colors only */
.game-type-regular {
	color: #6c757d;
}

.game-type-playoff {
	color: #ffc107;
}

.game-type-cup {
	color: var(--basketball-orange);
}

.game-type-finals {
	color: #ffd700;
}

.game-type-friendly {
	color: var(--woodley-green);
}

.status-upcoming {
	background: linear-gradient(135deg, rgba(0, 204, 102, 0.15), rgba(0, 204, 102, 0.25));
	color: var(--woodley-green);
	border-color: rgba(0, 204, 102, 0.3);
}

.status-completed {
	background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(0, 102, 204, 0.25));
	color: var(--woodley-blue);
	border-color: rgba(0, 102, 204, 0.3);
}

.status-cancelled {
	background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(220, 53, 69, 0.25));
	color: #dc3545;
	border-color: rgba(220, 53, 69, 0.3);
}

.location-indicator {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 16px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.location-home {
	background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.2));
	color: var(--woodley-blue);
	border: 1px solid rgba(0, 102, 204, 0.2);
}

.location-away {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.2));
	color: var(--basketball-orange);
	border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Enhanced Team Matchup */
.schedule-matchup {
	background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(0, 204, 102, 0.03));
	border-radius: 20px;
	padding: 25px;
	margin: 20px 0;
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	min-height: 140px;
}

.team-info {
	flex: 1;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 120px;
}

.team-info.winner::after {
	content: '👑';
	position: absolute;
	top: -5px;
	right: 10%;
	font-size: 1.2rem;
	animation: bounce 1s infinite;
	z-index: 10;
}

.schedule-team-logo {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid rgba(255, 255, 255, 0.9);
	background-color: var(--white);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	margin-bottom: 10px;
	flex-shrink: 0;
}

.schedule-card-athletic:hover .schedule-team-logo {
	transform: scale(1.1);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.team-name-schedule {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--charcoal);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.2;
	margin-bottom: 8px;
	min-height: 2.4em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-shrink: 0;
}

.team-score {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--woodley-blue);
	font-family: 'Bebas Neue', cursive;
	letter-spacing: 1px;
	flex-shrink: 0;
	margin-top: auto;
}

.team-info.winner .team-score {
	color: var(--woodley-green);
}

.vs-section {
	flex: 0 0 auto;
	text-align: center;
	margin: 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 120px;
}

.vs-text {
	font-family: 'Bebas Neue', cursive;
	font-size: 2.2rem;
	font-weight: 700;
	background: var(--gradient-energy);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	display: block;
	margin-bottom: 5px;
	flex-shrink: 0;
}

.draw-indicator {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: var(--charcoal);
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	flex-shrink: 0;
}

/* Enhanced Game Details */
.schedule-details {
	background: rgba(245, 247, 250, 0.9);
	border-radius: 16px;
	padding: 18px;
	margin: 18px 0;
	backdrop-filter: blur(10px);
}

.detail-item {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	color: var(--charcoal);
	margin-bottom: 8px;
	font-weight: 500;
}

.detail-item:last-child {
	margin-bottom: 0;
}

.detail-item i {
	width: 24px;
	text-align: center;
	color: var(--basketball-orange);
	font-size: 1.1rem;
	margin-right: 8px;
}

/* Enhanced Action Button */
.wessex-link {
	background: linear-gradient(135deg, var(--woodley-blue), var(--woodley-green));
	color: var(--white) !important;
	border: none;
	padding: 14px 28px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.wessex-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--basketball-orange), var(--woodley-blue));
	transition: left 0.3s ease;
	z-index: -1;
}

.wessex-link:hover::before {
	left: 0;
}

.wessex-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
	color: var(--white) !important;
}

/* List View Styles */
.list-view {
	display: block;
}

.schedule-table-container {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.schedule-table {
	width: 100%;
	display: table;
}

.schedule-table-header {
	display: table-row;
	background: linear-gradient(135deg, var(--charcoal), #3a3a3a);
	color: var(--white);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.85rem;
}

.schedule-table-header .table-cell {
	display: table-cell;
	padding: 20px 16px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-table-header .table-cell:last-child {
	border-right: none;
}

.schedule-table-body {
	display: table-row-group;
}

.schedule-table-row {
	display: table-row;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.schedule-table-row:hover {
	background: rgba(0, 102, 204, 0.03);
}

.schedule-table-row.completed {
	background: rgba(0, 102, 204, 0.02);
}

.schedule-table-row.cancelled {
	background: rgba(220, 53, 69, 0.02);
	opacity: 0.7;
}

.table-cell {
	display: table-cell;
	padding: 20px 16px;
	vertical-align: middle;
	text-align: center;
	border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.table-cell:last-child {
	border-right: none;
}

/* Date & Time Cell */
.date-time-info {
	text-align: center;
}

.game-date {
	font-weight: 600;
	color: var(--charcoal);
	font-size: 0.9rem;
	margin-bottom: 4px;
}

.game-time {
	font-size: 0.8rem;
	color: #666;
	font-weight: 500;
}

/* Teams Cell */
.teams-matchup {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.teams-matchup .team-info {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 12px;
	background: rgba(0, 102, 204, 0.05);
	transition: all 0.3s ease;
}

.teams-matchup .team-info.winner {
	background: rgba(0, 204, 102, 0.1);
	border: 2px solid rgba(0, 204, 102, 0.3);
}

.teams-matchup .team-info.loser {
	background: rgba(0, 0, 0, 0.05);
}

.team-logo-small {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.9);
}

.team-name {
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--charcoal);
}

.home-indicator {
	font-size: 0.75rem;
	opacity: 0.7;
	font-weight: 500;
}

.home-indicator.is-home {
	color: var(--woodley-blue);
	opacity: 1;
}

.vs-divider {
	font-size: 0.8rem;
	color: #999;
	font-weight: 500;
}

/* Venue Cell */
.venue-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 0.85rem;
	color: var(--charcoal);
}

.venue-info i {
	color: var(--basketball-orange);
}

/* Type Cell */
.game-type-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--charcoal);
	opacity: 0.8;
}

/* Status Cell */
.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 16px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Score Cell */
.score-display {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: 'Bebas Neue', cursive;
	font-size: 1.4rem;
	font-weight: 700;
}

.score {
	color: var(--charcoal);
	transition: all 0.3s ease;
}

.score.winner-score {
	color: var(--woodley-green);
	font-size: 1.6rem;
}

.score-divider {
	color: #999;
	font-size: 1.2rem;
}

.draw-label {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: var(--charcoal);
	padding: 2px 8px;
	border-radius: 8px;
	font-size: 0.6rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 4px;
}

.not-played {
	color: #999;
	font-size: 1.2rem;
}

/* Actions Cell */
.action-link {
	background: linear-gradient(135deg, var(--woodley-blue), var(--woodley-green));
	color: var(--white) !important;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 16px;
	font-size: 0.8rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.action-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
	color: var(--white) !important;
}

.no-link {
	color: #999;
	font-size: 1rem;
}

/* Custom Pagination */
.custom-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 30px 0;
	flex-wrap: wrap;
}

.pagination-btn {
	background: var(--white);
	border: 2px solid rgba(0, 102, 204, 0.1);
	color: var(--charcoal);
	padding: 12px 16px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 48px;
	justify-content: center;
}

.pagination-btn:hover:not(.disabled) {
	background: var(--woodley-blue);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.pagination-btn.active {
	background: var(--woodley-blue);
	color: var(--white);
	border-color: var(--woodley-blue);
}

.pagination-btn.disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none !important;
}

.page-numbers {
	display: flex;
	align-items: center;
	gap: 4px;
}

.pagination-ellipsis {
	color: #999;
	padding: 0 8px;
	font-weight: 600;
}

.pagination-info {
	background: rgba(0, 102, 204, 0.05);
	color: var(--charcoal);
	padding: 12px 20px;
	border-radius: 12px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-top: 20px;
	text-align: center;
	border: 2px solid rgba(0, 102, 204, 0.1);
}

/* Status dot animation */
.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
}

.status-upcoming .status-dot {
	background: var(--woodley-green);
	animation: pulse-dot 2s infinite;
}

.status-completed .status-dot {
	background: var(--woodley-blue);
}

.status-cancelled .status-dot {
	background: #dc3545;
}

@keyframes pulse-dot {
	0% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(1.3); }
	100% { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-10px); }
	60% { transform: translateY(-5px); }
}

/* Mobile Responsive */
@media (max-width: 1200px) {
	.grid-view {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 20px;
	}
}

@media (max-width: 768px) {

	#toggle-and-sort-controls {
		display: none;
	}

	/* Hide view toggle on tablet and mobile - force grid view only */
	.view-toggle-container {
		display: none;
	}

	/* Hide sort controls on mobile since list view is not available */
	.sort-container {
		display: none !important;
	}

	.schedule-controls {
		padding: 15px 10px;
	}

	.schedule-filters {
		padding: 15px 10px;
		margin-bottom: 0;
	}

	.grid-view {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 15px;
	}

	.schedule-card-athletic {
		border-radius: 16px;
	}

	.schedule-card-athletic .card-body {
		padding: 15px !important;
	}

	.game-status-indicator,
	.location-indicator,
	.game-type-indicator {
		font-size: 0.7rem;
	}

	.schedule-matchup {
		padding: 15px;
		margin: 15px 0;
		min-height: 90px;
	}

	.team-info {
		min-height: 80px;
	}

	.vs-section {
		margin: 0 10px;
		min-height: 80px;
	}

	.vs-text {
		font-size: 1.5rem;
	}

	.schedule-team-logo {
		width: 45px;
		height: 45px;
		margin-bottom: 6px;
	}

	.team-name-schedule {
		font-size: 0.75rem;
		margin-bottom: 4px;
		min-height: 2em;
	}

	.team-score {
		font-size: 1.3rem;
	}

	.schedule-details {
		padding: 12px;
		margin: 12px 0;
	}

	.detail-item {
		font-size: 0.8rem;
		margin-bottom: 6px;
	}

	.detail-item i {
		font-size: 0.9rem;
	}

	.wessex-link {
		padding: 10px 20px;
		font-size: 0.8rem;
	}

	/* Mobile Table Styles */
	.schedule-table-container {
		border-radius: 12px;
	}

	.schedule-table-header,
	.schedule-table-row {
		display: block;
	}

	.schedule-table-header {
		display: none; /* Hide header on mobile */
	}

	.schedule-table-row {
		display: block;
		background: var(--white);
		margin-bottom: 15px;
		border-radius: 12px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
		overflow: hidden;
	}

	.table-cell {
		display: block;
		border: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		text-align: left;
		padding: 15px 20px;
	}

	.table-cell:last-child {
		border-bottom: none;
	}

	.table-cell::before {
		content: attr(data-label) ': ';
		font-weight: 700;
		color: var(--woodley-blue);
		text-transform: uppercase;
		font-size: 0.8rem;
		letter-spacing: 0.5px;
		display: inline-block;
		min-width: 80px;
	}

	.teams-matchup {
		flex-direction: column;
		gap: 8px;
	}

	.teams-matchup .team-info {
		justify-content: flex-start;
	}

	/* Pagination Mobile */
	.custom-pagination {
		gap: 4px;
	}

	.pagination-btn {
		padding: 10px 12px;
		font-size: 0.8rem;
		min-width: 40px;
	}

	.pagination-btn span {
		display: none;
	}

	.prev-btn::before {
		content: '‹';
		font-size: 1.2rem;
	}

	.next-btn::after {
		content: '›';
		font-size: 1.2rem;
	}
}

@media (max-width: 576px) {
	/* Hide view toggle on mobile - force grid view only */
	.view-toggle-container {
		display: none;
	}

	.grid-view {
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
		gap: 12px;
	}

	.schedule-card-athletic .card-body {
		padding: 12px !important;
	}

	.schedule-matchup {
		padding: 12px;
		margin: 10px 0;
		min-height: 75px;
	}

	.team-info {
		min-height: 65px;
	}

	.vs-section {
		margin: 0 8px;
		min-height: 65px;
	}

	.vs-text {
		font-size: 1.2rem;
	}

	.schedule-team-logo {
		width: 35px;
		height: 35px;
		margin-bottom: 4px;
	}

	.team-name-schedule {
		font-size: 0.65rem;
		margin-bottom: 3px;
		min-height: 1.8em;
		line-height: 1.1;
	}

	.team-score {
		font-size: 1.1rem;
	}

	.schedule-details {
		padding: 8px;
		margin: 8px 0;
	}

	.detail-item {
		font-size: 0.75rem;
		margin-bottom: 4px;
	}

	.detail-item i {
		font-size: 0.8rem;
		width: 16px;
	}

	.wessex-link {
		padding: 8px 16px;
		font-size: 0.75rem;
	}

	.game-status-indicator,
	.location-indicator,
	.game-type-indicator {
		font-size: 0.65rem;
	}

	.custom-pagination {
		flex-direction: column;
		gap: 15px;
	}

	.page-numbers {
		order: -1;
	}

	.pagination-info {
		font-size: 0.8rem;
		padding: 10px 15px;
	}
}