html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#map {
  height: 100%;
  width: 100%;
}

.veld-label {
  font-weight: bold;
  font-size: 28px;
  color: black;
  display: flex;
  align-items: center; /* verticaal centreren */
  justify-content: center; /* horizontaal centreren */
  width: 30px; /* vaste breedte */
  height: 30px; /* vaste hoogte */
  border-radius: 50%; /* optioneel: cirkelvormige achtergrond */
  text-align: center;
}
.veld-sub {
  font-weight: bold;
  font-size: 20px;
  color: black;
  display: flex;
  align-items: center; /* verticaal centreren */
  justify-content: center; /* horizontaal centreren */
  width: 30px; /* vaste breedte */
  height: 30px; /* vaste hoogte */
  border-radius: 50%; /* optioneel: cirkelvormige achtergrond */
  text-align: center;
}
.veld-sub-nummer {
  font-weight: bold;
  font-size: 16px;
  color: black;
  display: flex;
  align-items: center; /* verticaal centreren */
  justify-content: center; /* horizontaal centreren */
  width: 30px; /* vaste breedte */
  height: 30px; /* vaste hoogte */
  border-radius: 50%; /* optioneel: cirkelvormige achtergrond */
  text-align: center;
}
.hover-tooltip {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
}
/* Verwijder zwarte focus/rand op polygonen en markers */
.leaflet-interactive:focus {
  outline: none;
  box-shadow: none;
}
.leaflet-control-custom {
  margin-top: 40px; /* duwt de knop onder de zoom knoppen */
  font-size: 18px;
}
