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

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

#status {
    position: absolute;
    z-index: 1000;

    top: 10px;
    right: 10px;

    padding: 8px 12px;

    background: rgba(255, 255, 255, 0.9);

    border-radius: 4px;

    font-family: sans-serif;
    font-size: 13px;
}

.geojson-point {
    background: transparent;
    border: none;
}

.geojson-point-icon {
    width: 32px;
    height: 32px;
}

.geojson-label {
    background: white;
    border: 1px solid #888;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.geojson-label::before {
    display: none;
}

.location-button {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;

    padding: 8px 12px;

    background: white;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;

    font-size: 14px;
    cursor: pointer;

    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

.location-button:hover {
    background: #f4f4f4;
}

.location-button:disabled {
    cursor: default;
    opacity: 0.7;
}
