/*
 * Pin the compact OSM attribution's text to the native <details> [open] state,
 * overriding MapLibre's own display rules so the ⓘ reliably expands on click.
 * Works with map_attrib_compact.js (which adds .maplibregl-compact + collapses).
 */
.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-inner {
  display: none !important;
}
.maplibregl-ctrl-attrib.maplibregl-compact[open] .maplibregl-ctrl-attrib-inner {
  display: block !important;
  padding: 2px 24px 2px 8px;
  font-size: 11px;
}
