.basemap-container {
    display: flex;
    flex-direction: row;
}

.basemap-container.leaflet-control {
    margin: 2px; // total 10, same as leaflet-control
}

.basemap-icon {
    height: 80px;
    width: 80px;
    margin: 8px;
    padding: 8px;
}

.basemap {
    height: 80px;
    width: 80px;
    background-color: white;
    outline: 1px solid gray;
    outline-style: solid;
    border: 2px solid white;
    border-radius: 8px;
    margin: 8px;
    cursor: pointer;
    display: none;
}

.basemap img {
    width: 100%;
    height: auto;
}

.basemap:hover {
    outline: 3px solid gray;
}

.basemap.active {
    display: block;
    outline: 2px solid gray;
}

.basemap .caption {
    width: 100%;
    background-color: black;
    color: white;
    font-size: 8px;
    position: absolute;
    bottom: 0px;
    z-index: 999;
    text-align: center;
}
