#map {
    height: 100vh;
}

.leaflet-control-zoom-in {
    color:#000000 !important;
}

.leaflet-control-zoom-out {
    color:#000000 !important;
}

.leaflet-popup-content {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.leaflet-popup {
    width: 300px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Staat standaard uit */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    color:#000000;
}

.popup button {
    background: #1d3557;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.popup button:hover {
    background: #457b9d;
}