body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, sans-serif;
    background: linear-gradient(to right, darkcyan, lightgreen);
}

#map {
    width: 100%;
    height: 97vh;
    border: 2px solid lightblue;
    box-shadow:inset 0 0 10px #000000;
    border-radius: 10px;
}

#nap_filter {
    height: 3vh;
    width: 50%;
    background-color: white;
    border-radius: 10px;
    margin:4px;
}
button{
    background-color: white;;
    border-radius: 10px;
    margin:4px;
}

.nap {
    background-color: aliceblue;
    /* color: white; */
    font-weight: bold;
    font-style: italic;
    border-radius: 5px;
    padding: 0px 10px;
    width: auto;
    text-align: center;
    ;
}

.leaflet-popup-content-wrapper {
    margin: 2px;
    padding: 2px;
}

.leaflet-popup-content {
    margin: 2px 5px;
    padding: 2px;
}

.google-link {
    display:block;
    text-decoration: none;
    color: white !important;
    /* font-weight: bold; */
    font-style: italic;
    border-radius: 5px;
    padding: 0px 10px;
    background-color:darkblue;
    /* width: 100%; */
    text-align: center;

    transition: 1s;
}
.google-link:hover {
    background-color:blue;
}