body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}

#map {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

header {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: center;
    padding: 0.5rem 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

header h1 {
    margin: 0;
    font-size: 2rem;
    flex: 1 1 auto;
}
#logos {
    margin: 0;
    padding: 0;
    display: flex;
    list-style-type: none;
    gap: 1rem;
    align-items: center;
}

.map-overlay {
    font: 1em sans-serif;
    position: fixed;
    width: 250px;
    top: 100px;
    left: 1rem;
    z-index: 10;
    padding: 0;
}

.map-overlay .map-overlay-inner {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
}

.map-overlay input {
    margin: 2px;
}

.maplibregl-popup-content {
    font-size: 1.2em;
}

input[type="number"] {
    width: 25%;
}
