```css
/* ===============================
   Calendar container
   =============================== */

.sp-calendar-wrapper {
	max-width: 100%;
	margin: 30px auto;
}

.sp-event-calendar {
	border-collapse: separate;
	border-spacing: 6px;
	background: transparent;
}

/* Calendar month heading */
.sp-event-calendar caption,
.sp-table-caption {
	font-size: 1.4rem;
	font-weight: 700;
	padding: 12px 0 20px;
	text-align: center;
	letter-spacing: 0.5px;
	color: #222;
}

.sp-event-calendar thead th {
	padding: 10px 0;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #666;
	background: transparent;
	border: none;
}

/* ===============================
   Day cells
   =============================== */

.sp-event-calendar td {
	background: #f8f9fb;
	border-radius: 10px;
	text-align: center;
	vertical-align: middle;
	height: 52px;
	position: relative;
	font-size: 0.95rem;
	color: #333;
	transition: all 0.2s ease;
}

/* Empty padding cells */
.sp-event-calendar td.pad {
	background: transparent;
}

/* ===============================
   Event day links
   =============================== */

.sp-event-calendar td > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	border-radius: 10px;
	position: relative;
	color: inherit !important; /* prevents overriding venue colors */
	background: inherit; /* ensures td colour shows */
}

/* Hover effect for normal days */
.sp-event-calendar td:hover {
	transform: translateY(-2px);
	background: #eef1f6;
}

/* Hover for event days */
.sp-event-calendar td > a:hover {
	background: rgba(0,0,0,0.05);
}

/* ===============================
   Today
   =============================== */

.sp-event-calendar td#today {
	box-shadow: inset 0 0 0 2px #000;
	background: #fff;
	font-weight: 700;
}

/* ===============================
   Event indicator dot
   =============================== */

.sp-event-calendar td a:after {
	background-color: #fff !important;
}

/* ===============================
   Venue colours (FULL CELL)
   =============================== */

/* HOME venue */
.sp-event-calendar td.venue-home {
	background-color: #000032 !important;
	border: 2px solid #000095;
	color: #fff;
}

/* AWAY venue */
.sp-event-calendar td.venue-away {
	background-color: #fe2d02 !important;
	border: 2px solid #ff7457;
	color: #fff;
}

/* Ensure the link doesn't override the cell colour */
.sp-event-calendar td.venue-home > a,
.sp-event-calendar td.venue-away > a {
	background: transparent !important;
	color: inherit !important;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

/* Hover effect */
.sp-event-calendar td.venue-home:hover,
.sp-event-calendar td.venue-away:hover {
	filter: brightness(0.92);
}

/* PLAYOFF league */
.sp-event-calendar td.league-playoff {
	background-color: #caa300 !important;
	border: 2px solid #ffd700;
	color: #fff;
}

/* Ensure link doesn't override */
.sp-event-calendar td.league-playoff > a {
	background: transparent !important;
	color: #fff !important;
}

/* Hover */
.sp-event-calendar td.league-playoff:hover {
	filter: brightness(0.92);
}

/* White dot */
.sp-event-calendar td.league-playoff a:after {
	background-color: #fff !important;
}

/* ===============================
   Footer navigation
   =============================== */

.sp-event-calendar tfoot td {
	background: transparent;
	color: #000;
}

.sp-event-calendar tfoot td a {
	color: #000 !important;
	font-weight: 600;
	text-decoration: none;
}

.sp-event-calendar tfoot td a:hover {
	text-decoration: underline;
}

/* ===============================
   Legend
   =============================== */

.sp-calendar-legend {
	display: flex;
	gap: 20px;
	margin: 15px 0;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	font-size: 14px;
}

.sp-calendar-legend .legend-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sp-calendar-legend .legend-color {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	display: inline-block;
}

/* Match calendar colours */

.sp-calendar-legend .legend-home .legend-color {
	background-color: #000032;
	border: 2px solid #000095;
	color: #fff;
}

.sp-calendar-legend .legend-away .legend-color {
	background-color: #fe2d02;
	border: 2px solid #ff7457;
	color: #fff;
}

.sp-calendar-legend .legend-label {
	font-weight: 600;
}

/* ===============================
   Make text & dot white on event days
   =============================== */

/* Text colour */
.sp-event-calendar td.venue-home,
.sp-event-calendar td.venue-away {
	color: #fff !important;
}

/* Event dot */
.sp-event-calendar td.venue-home a:after,
.sp-event-calendar td.venue-away a:after {
	background-color: #fff !important;
}

/* Ensure numbers stay white */
.sp-event-calendar td.venue-home > a,
.sp-event-calendar td.venue-away > a {
	color: #fff !important;
}

/* ===============================
   Mobile
   =============================== */

@media (max-width: 600px) {

	.sp-event-calendar {
		border-spacing: 4px;
	}

	.sp-event-calendar td {
		height: 44px;
		font-size: 0.85rem;
	}

	.sp-event-calendar caption {
		font-size: 1.2rem;
	}
}
```
