* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#map {
    width: 100vw;
    height: 100vh;
}

#zoom {
    position: absolute;
    z-index: 10;
    top: 5px;
    right: 5px;
    border: 1px solid grey;
    border-radius: 10px;
    padding: 5px;
    background-color: rgba(225, 225, 225, 0.6);
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px
}
#poiToggle {
    position: absolute;
    z-index: 10;
    top: 45px;   /* sous le zoom */
    right: 5px;
    border: 1px solid grey;
    border-radius: 10px;
    padding: 5px;
    background-color: rgba(225, 225, 225, 0.6);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
}

#poiToggle button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
}

.mousePosition {
    position: fixed;
    top: auto;
    right: auto;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid grey;
    border-radius: 10px;
    padding: 5px;
    background-color: rgba(225, 225, 225, 0.6);
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
}

#format {
    position: absolute;
    z-index: 10;
    bottom: 20px;
    right: 5px; 
}

#resolution {
    position: absolute;
    z-index: 10;
    bottom: 20px;
    right: 95px;
}