#av-map-wrapper {
    position: relative;
    background: #f0f0f0;
    border: 2px solid #333;
    overflow: hidden;
    margin: 20px auto;
}

#carte-container {
    width: 100%;
    height: 100%;
}

/* Styles forcés pour les emplacements */
[id^="emp-"] {
    fill: #999999 !important;
    fill-opacity: 1 !important;
    stroke: #000000 !important;
    stroke-width: 1px !important;
    cursor: pointer !important;
    pointer-events: all !important;
}

/* Style de sélection */
[id^="emp-"].is-active {
    fill: #FFFF00 !important; /* Jaune */
    stroke: #FF0000 !important; /* Bordure rouge pour bien voir */
    stroke-width: 3px !important;
}

#carte-container svg * {
    pointer-events: none;
}