.pmcal {
	max-width: 1100px;
	margin: 2rem auto;
	font-family: Arial, Helvetica, sans-serif;
}

.pmcal-header h2 {
	margin: 0 0 1rem;
	font-size: 2rem;
	line-height: 1.1;
}

.pmcal-month {
	margin-bottom: 2rem;
}

.pmcal-month h3 {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.pmcal-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.pmcal-table th {
	background: #155a74;
	color: #fff;
	padding: 0.8rem 0.4rem;
	text-align: center;
	text-transform: uppercase;
	font-size: 0.95rem;
}

.pmcal-table td {
	border: 1px solid #d6e4ea;
	height: 120px;
	vertical-align: top;
	padding: 0.5rem;
	background: #fff;
}

.pmcal-empty {
	background: #f8fbfc;
}

.pmcal-day-number {
	text-align: right;
	font-size: 1.6rem;
	line-height: 1;
	font-weight: 700;
	color: #555;
	margin-bottom: 0.5rem;
}

.pmcal-performance {
	display: block;
	margin-top: 0.35rem;
	text-align: right;
	font-size: 0.95rem;
	line-height: 1.2;
	text-decoration: underline;
}

a.pmcal-performance {
	color: #155a74;
}

a.pmcal-performance:hover {
	text-decoration: underline;
}

.pmcal-not-on-sale,
.pmcal-sold-out {
	color: #777;
	opacity: 0.7;
}

.pmcal-note {
	display: block;
	font-size: 0.7rem;
	font-style: italic;
}

@media (max-width: 700px) {
	.pmcal-table,
	.pmcal-table thead,
	.pmcal-table tbody,
	.pmcal-table tr,
	.pmcal-table th,
	.pmcal-table td {
		display: block;
	}

	.pmcal-table thead {
		display: none;
	}

	.pmcal-table tr {
		border-top: 1px solid #d6e4ea;
	}

	.pmcal-table td {
		height: auto;
		min-height: 70px;
		border-top: 0;
	}

	.pmcal-empty {
		display: none;
	}

	.pmcal-day-number,
	.pmcal-performance {
		text-align: left;
	}
}

.pmcal-performance {
	position: relative;
}

.pmcal-marker {
	display: inline-block;
	width: 0;
	height: 0;
	margin-right: 0.45rem;
	vertical-align: middle;

	border-top: 1rem solid currentColor;
	border-left: 1rem solid transparent;
}

.pmcal-marker-yellow .pmcal-marker {
	color: #ffe600;
}

.pmcal-marker-orange .pmcal-marker {
	color: #ff914d;
}

.pmcal-marker-green .pmcal-marker {
	color: #00a86b;
}

.pmcal-marker-blue .pmcal-marker {
	color: #155a74;
}

.pmcal-marker-purple .pmcal-marker {
	color: #8a005d;
}

.pmcal-marker-pink .pmcal-marker {
	color: #ff4f7b;
}

.pmcal-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	align-items: center;
	margin-top: 1rem;
	margin-bottom: 4rem;
	font-size: 0.95rem;
}

.pmcal-legend-item {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}

