/* Vollbild-Map Styling */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    /* overflow: hidden entfernt, um Footer anzuzeigen */
}

body {
    display: flex;
    flex-direction: column;
}

#map-container {
    position: relative;
    flex: 1;
    width: 100%;
    /* Höhe angepasst - kein Footer mehr */
    height: calc(100vh - 60px); /* 60px für Header */
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.map-buttons {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 10px;
}
