html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #111;
    color: #eee;
    font-family: system-ui, sans-serif;
}

#container {
    display: flex;
    height: 90vh;
    overflow: hidden;
    padding-top: 20px;
}

#list {
    width: 250px;
    height: 100%;
    overflow-y: auto;
    background: #181818;
    overflow-y: auto;
    border-right: 1px solid #333;
    padding: 45px 2px 2px 2px ;
    font-size: 12px;

    display: grid;
    grid-template-columns: 1fr 1fr; /* zwei Spalten */
    gap: 1px;
}
.dagger {
    color: #c89b3c;
    font-weight: bold;
    margin-left: 4px;
}
#toggleList {
  display: none;
}



.distillery-item {
    padding: 4px;
    background: #202020;
    border: 1px solid #333;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 4px;
}

.distillery-item:hover {
    background: #333;
}

.distillery-item.active {
    background: #333;
    color: #c89b3c;
    border-color: #555;
    font-weight: bold;
}

.maplibregl-popup-content {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #444;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 6px;
}

.maplibregl-popup-tip {
    border-top-color: #fff !important;
}

#map {
    flex: 1;
    background: #444;
}

@media (max-width: 700px) {
    #container {
        position: relative;
    }

    #list {
        position: absolute;
        top: 0;
        left: 0;
        width: 75%;
        height: 100%;
        background: #181818;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 10;
    }

    #list.open {
        transform: translateX(0);
    }

    #map {
        flex: 1;
    }

    #toggleList {
        position: absolute;
        top: 80px;
        right: 10px;
        z-index: 20;
        background: #333;
        color: #eee;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 14px;
        cursor: pointer;
        display: block;
    }
}
