.wm-custom-calendar {
	max-width: 1100px;
	margin: 40px auto;
	background: #ffffff;
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.fc-view-harness {
	overflow: auto;
}

.fc-header-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.fc-toolbar-chunk {
	display: flex;
}

.fc-toolbar-title {
	font-size: 1.75rem;
	font-weight: bold;
	color: #000;
	margin: 0;
}

.fc-button {
	background-color: #fed301;
	color: #000;
	border: none;
	padding: 8px 16px;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	margin-left: 6px;
	transition: background 0.2s ease;
}

.fc-button:hover {
	background-color: #354d3f;
}

.fc-prev-button, .fc-next-button {
	font-size: 1.25rem;
	padding: 4px 14px;
	line-height: 1;
}

.fc-scrollgrid {
	border: 0;
	border-radius: 8px;
	overflow: hidden;
	margin-left: -8px;
	margin-right: -8px;
	width: calc(100% + 16px) !important;
}
.fc-scrollgrid th {
	border-top: 0;
	color: #1b1d21;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1rem;
	margin-bottom: 10px;
	min-height: 10px;
	padding: 0 8px 20px;
	text-transform: uppercase;
}

.fc-daygrid-day {
	vertical-align: top;
	width: 14.28%;
	padding: 8px;
}
.fc-daygrid-day:before {
	content: '';
	display: block;
	border-top: 2px solid #fed301;
	width: 100%;
}

.fc-day-other .fc-daygrid-day-number {
	opacity: 0.3;
}

.fc-daygrid-day-number {
	font-weight: 700;
	font-size: 0.9rem;
	color: #1e293b;
	text-align: left;
	padding-top: 10px;
	margin-bottom: 8px;
}

.fc-daygrid-day-events {
	padding-right: 8px;
}

.fc-custom-event-card {
	padding: 10px;
	margin-top: 6px;
	background-color: #fed301;
	border-radius: 6px;
	color: #ffffff;
	box-shadow: 0 2px 6px rgba(46,70,56,0.15);
}

.fc-event-custom-title {
	font-size: 0.85rem;
	margin-bottom: 4px;
	line-height: 1.3;
	font-weight: 700;
	color: #000 !important;
}

.main .fc-event-custom-title a:hover {
	color: #000 !important;
	text-decoration: none;
}

.fc-event-time-badge {
	font-size: 0.75rem;
	font-weight: 500;
	opacity: 0.85;
	margin-bottom: 8px;
	text-transform: uppercase;
	color: #000 !important;
}

.fc-past-event-card {
	background-color: #f1f5f9 !important;
	color: #94a3b8 !important;
	box-shadow: none !important;
}

.fc-past-event-card .fc-event-custom-title {
	color: #64748b !important;
}

.fc-past-event-card .fc-event-time-badge {
	color: #94a3b8 !important;
}

.fc-past-event-label {
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 700;
	opacity: 0.6;
}

.fc-sold-out-card {
	background-color: #fdf2f2 !important;
	color: #9b1c1c !important;
	border-left: 3px solid #f05252;
	box-shadow: none !important;
}

.fc-sold-out-card .fc-event-custom-title {
	color: #9b1c1c !important;
}

.fc-sold-out-badge {
	display: inline-block;
	width: 100%;
	text-align: center;
	background-color: #fde8e8;
	color: #9b1c1c;
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 4px 0;
	border-radius: 4px;
	border: 1px solid #f8b4b4;
}

a.fc-calendar-buy-btn {
	display: block;
	text-align: center;
	background-color: #000;
	color: #fed301 !important;
	font-size: 0.7rem;
	font-weight: 700;
	text-decoration: none !important;
	padding: 5px 10px;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	transition: all 0.2s ease;
}

a.fc-calendar-buy-btn:hover {
	background-color: #354d3f;
	color: #ffffff !important;
}

@media screen and (max-width: 639px) {
	.fc-header-toolbar {
		flex-direction: column;
	}
}