

/* ZOOM */
.leaflet-control-zoom {
    position: absolute !important;
    bottom: 20px;
    right: 10px;
    top: auto !important;
}

body {
    margin: 0;
    font-family: Arial;
    background: #000; /* fondo negro */
}

#map {
    width: 100%;
    height: 100vh;
    background: #000;
}

/* BOTONES */
.top-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    gap: 8px;
}

.top-controls button {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.btn-todos { background: #444; }
.btn-gaseosas { background: #007aff; }
.btn-comida { background: #ff9500; }
.btn-juegos { background: #34c759; }
.btn-salud { background: #ff3b30; }

.top-controls button:active {
    transform: scale(0.95);
}

/* RESET */
.reset-btn {
    position: absolute;
    bottom: 90px;
    right: 10px;
    z-index: 1000;
    padding: 16px;
    border-radius: 50%;
    border: none;
    background: #0a84ff;
    color: white;
    font-size: 20px;
}

/* ZOOM */
.leaflet-control-zoom {
    position: absolute !important;
    bottom: 20px;
    right: 10px;
    top: auto !important;
}