.vvl-form {
	max-width: 480px;
	margin: 0 auto;
}

.vvl-veld {
	margin-bottom: 16px;
}

.vvl-veld-rij {
	display: flex;
	gap: 16px;
}

.vvl-veld-rij .vvl-veld {
	flex: 1;
}

.vvl-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
}

.vvl-form input[type="text"],
.vvl-form input[type="number"],
.vvl-form select,
.vvl-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
	box-sizing: border-box;
}

.vvl-checkbox label {
	font-weight: normal;
	display: flex;
	align-items: center;
	gap: 8px;
}

.vvl-knop-primair,
.vvl-knop-secundair {
	cursor: pointer;
	border: none;
	border-radius: 6px;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 600;
}

.vvl-knop-primair {
	background: #0f6b3a;
	color: #fff;
	width: 100%;
}

.vvl-knop-primair:disabled {
	opacity: 0.6;
}

.vvl-knop-secundair {
	background: #eee;
	color: #333;
	margin-top: 8px;
}

.vvl-hulptekst {
	font-size: 13px;
	color: #666;
	margin-top: 4px;
}

.vvl-melding {
	margin-top: 12px;
	padding: 10px 14px;
	border-radius: 6px;
}

.vvl-melding-succes {
	background: #e5f6ec;
	color: #0f6b3a;
}

.vvl-melding-fout {
	background: #fdecea;
	color: #a4262c;
}

/* Logboek-filters */
.vvl-logboek-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: flex-end;
	background: #f7f7f7;
	border-radius: 10px;
	padding: 14px;
	margin-bottom: 20px;
}

.vvl-filter-veld {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.vvl-filter-veld label {
	font-size: 12px;
	font-weight: 600;
	color: #555;
}

.vvl-filter-veld select {
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
	background: #fff;
}

.vvl-filter-checkbox {
	flex-direction: row;
	align-items: center;
}

.vvl-filter-checkbox label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: normal;
	font-size: 14px;
	color: #333;
}

/* Logboek */
.vvl-logboek {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 280px, 1fr ) );
	gap: 20px;
}

.vvl-kaart {
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.vvl-kaart-foto img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

.vvl-kaart-inhoud {
	padding: 14px;
}

.vvl-kaart-inhoud h3 {
	margin: 0 0 4px;
}

.vvl-kaart-datum {
	color: #888;
	font-size: 13px;
	margin: 0 0 8px;
}

.vvl-weer {
	font-size: 13px;
	color: #555;
}

/* Vissoort-tegels */
.vvl-vissoort-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 130px, 1fr ) );
	gap: 10px;
}

.vvl-vissoort-tegel {
	background: none;
	border: 3px solid transparent;
	border-radius: 14px;
	padding: 0;
	cursor: pointer;
	overflow: hidden;
	line-height: 0;
	transition: border-color 0.15s ease, transform 0.1s ease;
}

.vvl-vissoort-tegel:hover {
	transform: translateY( -2px );
}

.vvl-vissoort-tegel.vvl-tegel-geselecteerd {
	border-color: #0f6b3a;
}

.vvl-vissoort-icoon {
	display: block;
	width: 100%;
}

.vvl-vissoort-icoon svg {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 11px;
}

.vvl-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect( 0, 0, 0, 0 );
	white-space: nowrap;
}

.vvl-link-knop {
	background: none;
	border: none;
	color: #0f6b3a;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	padding: 0;
	display: inline-block;
}

/* Mooie bestandsknop i.p.v. de standaard "Bestand kiezen"-knop */
.vvl-bestand-input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
}

.vvl-foto-knoppen {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.vvl-bestand-knop {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #f0f7f2;
	border: 2px dashed #b7d9c3;
	border-radius: 10px;
	padding: 16px 10px;
	cursor: pointer;
	font-weight: 600;
	color: #0f6b3a;
	text-align: center;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.vvl-bestand-knop:hover {
	background: #e5f2ea;
	border-color: #0f6b3a;
}

.vvl-bestand-knop-icoon {
	font-size: 18px;
}

/* Locatie / kaart */
.vvl-locatie-leeg {
	background: #f7f7f7;
	border: 1px dashed #ccc;
	border-radius: 8px;
	padding: 14px;
	text-align: center;
	color: #777;
	font-size: 14px;
	margin: 8px 0;
}

.vvl-form-kaart {
	height: 240px;
	border-radius: 8px;
	margin: 8px 0;
	border: 1px solid #ddd;
}

.vvl-kaart-wrapper {
	position: relative;
}

.vvl-kaart-kruis {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -92% );
	font-size: 34px;
	pointer-events: none;
	filter: drop-shadow( 0 2px 2px rgba( 0, 0, 0, 0.35 ) );
	z-index: 500;
}

.vvl-form-knoppen {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.vvl-form-knoppen .vvl-knop-primair,
.vvl-form-knoppen .vvl-knop-secundair {
	flex: 1;
	min-width: 140px;
	width: auto;
	margin-top: 0;
}

/* Login */
.vvl-login-wrap {
	max-width: 380px;
	margin: 0 auto;
}

/* Portaal */
.vvl-portaal {
	max-width: 600px;
	margin: 0 auto;
}

.vvl-portaal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	font-weight: 600;
}

.vvl-uitloggen {
	font-weight: normal;
	font-size: 14px;
	color: #a4262c;
	text-decoration: none;
}

.vvl-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
	border-bottom: 2px solid #eee;
}

.vvl-tab-knop {
	background: none;
	border: none;
	padding: 10px 16px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	color: #888;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
}

.vvl-tab-knop.vvl-tab-actief {
	color: #0f6b3a;
	border-bottom-color: #0f6b3a;
}

.vvl-kaart {
	cursor: pointer;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.vvl-kaart:hover,
.vvl-kaart:focus {
	box-shadow: 0 4px 14px rgba( 0, 0, 0, 0.1 );
	transform: translateY( -2px );
	outline: none;
}

.vvl-kaart-meer {
	color: #0f6b3a;
	font-size: 13px;
	font-weight: 600;
	margin: 8px 0 0;
}

/* Detail-modal */
.vvl-modal {
	position: fixed;
	inset: 0;
	background: rgba( 0, 0, 0, 0.5 );
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.vvl-modal-overlay {
	position: absolute;
	inset: 0;
}

.vvl-modal-venster {
	position: relative;
	background: #fff;
	border-radius: 10px;
	max-width: 520px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 24px;
	box-sizing: border-box;
}

.vvl-modal-sluiten {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #f0f0f0;
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	color: #444;
}

.vvl-modal-inhoud h2 {
	margin: 0 6px 4px 0;
}

.vvl-modal-datum {
	color: #888;
	font-size: 13px;
	margin: 0 0 14px;
}

.vvl-modal-foto {
	width: 100%;
	max-height: 320px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 16px;
}

.vvl-modal-inhoud h3 {
	margin: 18px 0 8px;
	font-size: 15px;
	color: #333;
}

.vvl-modal-tabel {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 120px, 1fr ) );
	gap: 10px;
}

.vvl-modal-tabel div {
	background: #f7f7f7;
	border-radius: 6px;
	padding: 8px 10px;
}

.vvl-modal-tabel span {
	display: block;
	font-size: 12px;
	color: #888;
}

.vvl-modal-tabel strong {
	font-size: 14px;
}

#vvl-modal-kaart {
	height: 220px;
	border-radius: 8px;
	margin-top: 8px;
}

.vvl-modal-publicatie {
	margin-top: 18px;
	font-size: 13px;
	color: #666;
}

/* Dashboard */
.vvl-tabel {
	width: 100%;
	border-collapse: collapse;
}

.vvl-tabel th,
.vvl-tabel td {
	border-bottom: 1px solid #e2e2e2;
	padding: 8px 10px;
	text-align: left;
	font-size: 14px;
}

.vvl-tabel th {
	background: #f5f5f5;
}
