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

#map-container {
    position: relative;
    height: 100vh;
    width: 100vw;
}

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

#filter-buttons {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 1000;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-option {
    display: none;
}

.filter-option.show {
    display: block;
}

.active-filter {
    background-color: #007bff;
    color: white;
}

button {
    padding: 6px 12px;
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
    border-radius: 4px;
}

button:hover {
    background-color: #e0e0e0;
}

#toggle-filters {
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #28a745;
    color: white;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease;
    user-select: none;
}

#toggle-filters:hover {
    background-color: #218838;
}

#toggle-filters-open {
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #28a745;
    color: white;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease;
    user-select: none;
}

#toggle-filters-open:hover {
    background-color: #218838;
}

#toggle-filters-close {
    /* schon inline gesetzt, kannst hier noch anpassen */
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    user-select: none;
}

#toggle-filters-close:hover {
    background-color: #bd2130;
}

#imageOverlay {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
#imageOverlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
}
#imageOverlay.closeable {
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}
