/**
 * @file
 * Styles for MapLibre location detail map.
 */

/* Map embed container */
.map-embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.map-embed__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Custom marker for location detail */
.location-detail-marker {
  width: 40px;
  height: 40px;
  background-image: url('../assets/map-marker-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Ensure maplibre canvas fills container */
.map-embed__container .maplibregl-canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Hide MapLibre controls on static map */
.map-embed__container .maplibregl-ctrl-attrib,
.map-embed__container .maplibregl-ctrl-logo {
  display: none;
}
