.hc-calendar-wrapper {
	max-width: 720px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.hc-calendar-wrapper.hc-loading {
	opacity: 0.5;
	pointer-events: none;
}

.hc-calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.hc-month-title {
	text-align: center;
}

.hc-month-name {
	display: block;
	font-size: 20px;
	font-weight: 600;
}

.hc-year {
	display: block;
	font-size: 13px;
	color: #666;
}

.hc-nav {
	background: #f3f3f3;
	border: 1px solid #ddd;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

.hc-nav:hover {
	background: #e6e6e6;
}

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

.hc-table th {
	padding: 8px 4px;
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	color: #777;
	border-bottom: 1px solid #eee;
}

.hc-table td {
	border: 1px solid #eee;
	height: 72px;
	vertical-align: top;
	padding: 4px 6px;
	position: relative;
	font-size: 13px;
}

.hc-table td.hc-empty {
	background: #fafafa;
	border-color: #f2f2f2;
}

.hc-day-number {
	display: block;
	font-weight: 600;
	font-size: 15px;
}

.hc-greg-date {
	display: block;
	font-size: 10px;
	color: #999;
}

.hc-today {
	outline: 2px solid #2271b1;
	outline-offset: -2px;
}

.hc-has-occasion {
	color: #fff;
	border-radius: 4px;
}

.hc-has-occasion .hc-greg-date {
	color: rgba(255, 255, 255, 0.8);
}

.hc-occasion-label {
	display: block;
	font-size: 10px;
	margin-top: 2px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hc-legend {
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hc-legend-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
}

@media ( max-width: 480px ) {
	.hc-table td {
		height: 56px;
		font-size: 11px;
		padding: 2px 3px;
	}

	.hc-day-number {
		font-size: 13px;
	}

	.hc-occasion-label {
		display: none;
	}
}
