* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    height: 100%;
    width: 100%;
    background-color: hsl(0, 0%, 100%);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
}

#map {
    width: 100%;
    height: 100%;
}

.maplibregl-popup-content {
    padding: 0 5px;
    margin: -1px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    pointer-events: none !important;
    transform: skewY(10deg);
}

.maplibregl-popup-content p {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

.maplibregl-popup-close-button {
    display: none !important;
}

.maplibregl-popup-tip {
    transform: skewY( 10deg )
}

