/* mini-map.css */

.mini-map-wrapper { 
    position: relative; 
    display: block;
    width: 100%;
    max-width: 1200px; /* Anchura máxima */
    max-height: 800px;  /* Altura máxima */
    aspect-ratio: auto; /* Mantiene el ratio del contenido */
    margin: 0 auto;
    overflow: hidden;
    line-height: 0;
}

/* El SVG con viewBox="0 0 100 100" define implícitamente el aspect-ratio */
.mini-map-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.mini-map-hotspot {
    fill: transparent;
    stroke: grey;
    stroke-width: 1; 
    vector-effect: non-scaling-stroke; 
    cursor: pointer;
    transform-origin: center center;
    outline: none; 
    pointer-events: bounding-box;
}

.mini-map-hotspot-content {
    position: absolute; 
    pointer-events: none;
    user-select: none;
    box-sizing: border-box;
    overflow: hidden; 
    z-index: 10; 
}
