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

#container {
    display: flex;
    height: 100%;
}

#map {
    flex: 1;
    height: 100%;
}

#sidebar {
    width: 300px;
    background: #f7f7f7;
    overflow-y: auto;
    padding: 10px;
    border-left: 1px solid #ccc;
    font-family: sans-serif;
}

#sidebar h3 {
    margin-bottom: 10px;
}

.bodega-item {
    cursor: pointer;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 5px;
    background-color: #e9e9e9;
    transition: 0.2s;
}

.bodega-item:hover {
    background-color: #dcdcdc;
}

#hamburgerBtn {
    display: none;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1001;
    background-color: #000;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    #hamburgerBtn {
        display: block;
    }

    #sidebar {
        position: absolute;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background: #f7f7f7;
        z-index: 1001;
        transition: left 0.3s ease;
    }

    #sidebar.open {
        left: 0;
    }

    #map {
        flex: 1;
        height: 100%;
    }

    #container {
        flex-direction: column;
    }
}
/* Etiquetas de pueblos visibles */
.leaflet-tooltip.pueblo-tooltip {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #666;
    border-radius: 4px;
    padding: 2px 6px;
    color: #000;
    font-weight: bold;
    font-size: 13px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}