/* ============================================================
 * Jaar-overzicht: 12 mini-maand-kalendertjes met stippen.
 * Alle styling onder .mc-scope om Salient-conflicten te beperken.
 * ============================================================ */

.mc-scope .mc-year {
	position: relative;
}

.mc-scope .mc-year__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}
.mc-scope .mc-year__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background: #fff;
	border: 1px solid #d1d5db;
	color: #111827;
	text-decoration: none;
	font-size: 18px;
	line-height: 1;
}
.mc-scope .mc-year__nav:hover {
	background: #f3f4f6;
}
.mc-scope .mc-year__label {
	flex: 1;
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	color: #111827;
}
.mc-scope .mc-year__today {
	padding: 6px 12px;
	border-radius: 6px;
	background: #fff;
	border: 1px solid #d1d5db;
	color: #111827;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
}
.mc-scope .mc-year__today.is-current {
	background: #111827;
	color: #fff;
	border-color: #111827;
}

/* Legenda */
.mc-scope .mc-year__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	padding: 12px 14px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 13px;
	color: #374151;
}
.mc-scope .mc-year__legend-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* Mini-maanden grid: 4×3 desktop, 3×4 tablet, 1×12 mobiel. */
.mc-scope .mc-year__months {
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	gap: 16px;
}
@media ( max-width: 1100px ) {
	.mc-scope .mc-year__months {
		grid-template-columns: repeat( 3, 1fr );
	}
}
@media ( max-width: 760px ) {
	.mc-scope .mc-year__months {
		grid-template-columns: repeat( 2, 1fr );
	}
}
@media ( max-width: 480px ) {
	.mc-scope .mc-year__months {
		grid-template-columns: 1fr;
	}
}

/* Mini-maand */
.mc-scope .mc-year__month {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	padding: 10px 10px 12px;
}
.mc-scope .mc-year__month-label {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: #111827;
	text-align: center;
}
.mc-scope .mc-year__month-label a {
	color: inherit;
	text-decoration: none;
}
.mc-scope .mc-year__month-label a:hover {
	text-decoration: underline;
}

.mc-scope .mc-year__month-grid {
	display: grid;
	grid-template-columns: repeat( 7, 1fr );
	gap: 1px;
}

.mc-scope .mc-year__weekday {
	font-size: 10px;
	font-weight: 700;
	color: #9ca3af;
	text-align: center;
	padding: 2px 0;
	text-transform: uppercase;
}

.mc-scope .mc-year__day {
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: default;
	text-align: center;
	font-family: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 28px;
	border-radius: 4px;
	position: relative;
}
.mc-scope .mc-year__day.is-other-month {
	visibility: hidden;
}
.mc-scope .mc-year__day.has-events {
	cursor: pointer;
}
.mc-scope .mc-year__day.has-events:hover,
.mc-scope .mc-year__day.has-events:focus-visible {
	background: #f3f4f6;
	outline: none;
}
.mc-scope .mc-year__day.is-today .mc-year__day-number {
	background: #111827;
	color: #fff;
	border-radius: 50%;
}
.mc-scope .mc-year__day.is-past .mc-year__day-number {
	color: #9ca3af;
}

.mc-scope .mc-year__day-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	font-size: 11px;
	font-weight: 600;
	color: #374151;
	margin: 2px 0 1px;
}

.mc-scope .mc-year__dots {
	display: inline-flex;
	gap: 2px;
	min-height: 6px;
	margin-bottom: 2px;
}
.mc-scope .mc-year__dot {
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	border: 1px solid rgba( 0, 0, 0, 0.08 );
}
.mc-scope .mc-year__dot--more {
	width: auto;
	height: auto;
	border: 0;
	font-size: 9px;
	font-weight: 700;
	color: #6b7280;
	line-height: 1;
}
