/* ===================================================================
   Open-agenda kalender (VcBlock theme_open_calendar)
   =================================================================== */
.lk-cal {
	width:100%;
	background: #FBF8F2;
	border: 1px solid rgba(42, 31, 64, .10);
	border-radius: 24px;
	padding: clamp(26px, 3vw, 40px);
	box-shadow: 0 30px 60px -38px rgba(42, 31, 64, .45);
	font-family: var(--font-sans, 'Manrope', sans-serif);
}
.lk-cal__title {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	font-size: clamp(24px, 3vw, 32px);
	color: #2A1F40;
	margin: 0 0 18px;
	text-align: center;
}

/* Maand-navigatie */
.lk-cal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}
.lk-cal__month {
	font-family: 'Cormorant Garamond', serif;
	font-size: 23px;
	color: #2A1F40;
	text-transform: capitalize;
	flex: 1;
	text-align: center;
}
.lk-cal__nav {
	width: 50px;
	height: 50px;
	flex: none;
	border: 1px solid #E8DFD3;
	border-radius: 50%;
	background: #fff;
	color: #523F6D;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}
.lk-cal__nav:hover { background: #F2ECE1; border-color: #523F6D; }
.lk-cal__nav:disabled { opacity: .3; cursor: default; }

/* Weekdag-koppen */
.lk-cal__dow {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	margin-bottom: 6px;
}
.lk-cal__dow span {
	text-align: center;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #B89248;
	width: 50px;
}

/* Dagen-grid */
.lk-cal__days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
}
.lk-cal__cell {
	position: relative;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: clamp(16px, 1.6vw, 19px);
	color: #2A1F40;
	background: transparent;
	width:50px
}
.lk-cal__cell.is-empty { background: transparent; }
.lk-cal__num { line-height: 1; }
.lk-cal__dot { display: none; } /* legenda toont de betekenis al */

/* Open dagen — duidelijk groen gevuld */
.lk-cal__cell.is-open {
	background: rgba(91, 122, 74, .20);
	color: #3B5230;
	font-weight: 700;
}
.lk-cal__cell.is-open:hover { background: rgba(91, 122, 74, .30); }

/* Gesloten/verleden gedempt */
.lk-cal__cell:not(.is-open):not(.is-today) { color: #B3ADBE; }
.lk-cal__cell.is-past { opacity: .55; }

/* Vandaag — duidelijke ring */
.lk-cal__cell.is-today { box-shadow: inset 0 0 0 2px #523F6D; color: #2A1F40; font-weight: 600; }
.lk-cal__cell.is-today.is-open { box-shadow: inset 0 0 0 2px #5B7A4A; }

/* Legenda */
.lk-cal__legend {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(42, 31, 64, .08);
	font-size: 13px;
	color: #5B5466;
}
.lk-cal__legend-item { display: inline-flex; align-items: center; gap: 8px; }
.lk-cal__legend-dot {
	width: 12px;
	height: 12px;
	border-radius: 4px;
	background: rgba(42, 31, 64, .10);
}
.lk-cal__legend-dot.is-open { background: rgba(91, 122, 74, .55); }

.lk-cal__note {
	margin: 14px 0 0;
	text-align: center;
	font-size: 13px;
	color: #9A93A6;
}