/*
 * Minimap panel — just an outline that matches the visual language
 * of the other modal popdowns (1px dark-glass border + soft drop
 * shadow). NO opaque background — the mapbox-gl-control-minimap
 * library renders its own miniature map canvas inside; an opaque
 * fill would hide it entirely.
 *
 * Plus a 10px right-margin so the panel aligns visually with the
 * rest of the right-side controls instead of sitting flush against
 * the map edge.
 *
 * DOM (added by the minimap library, also accepts the maplibregl-
 * prefixed class on forks for portability):
 *   <div class="mapboxgl-ctrl-minimap"> … miniature map canvas … </div>
 */

.mapboxgl-ctrl-minimap,
.maplibregl-ctrl-minimap {
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  background: transparent;
}
