.ekela-map-wrapper {
    position: relative;
    width: 100%;
}

.ekela-map-bg {
    width: 100%;
    display: block;
}

.ekela-map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.ekela-map-zone {
    fill: rgba(242, 201, 76, 0.12);
    stroke: rgba(242, 201, 76, 0.9);
    stroke-width: 4;
    cursor: pointer;
    -webkit-transition: fill .25s ease, stroke .25s ease, stroke-width .25s ease;
    transition: fill .25s ease, stroke .25s ease, stroke-width .25s ease;
}

.ekela-map-zone:hover,
.ekela-map-zone:focus {
    fill: rgba(242, 201, 76, 0.45);
    stroke: rgba(242, 183, 5, 1);
    stroke-width: 4;
    outline: none;
}

.ekela-map-modal {
    display: none;
    position: fixed;
    inset: 0;
    top: 80px;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ekela-map-modal.is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ekela-map-modal-content {
    background: #fff;
    max-width: 600px;
    width: 90%;
    padding: 25px;
    border-radius: 8px;
    position: relative;
}


.ekela-map-text {
    max-height: 580px;
    overflow-y: auto;
}

.ekela-map-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000000 !important;
}

#ekela-modal-title {
    font-size: 22px;
    padding-bottom: 12px;
}

@media (max-width: 768px) {
  
    .ekela-map-modal {
        top: 80px;
    }

    .ekela-map-modal-content  {
        max-height: 450px;
    }
  
    .ekela-map-text {
      max-height: 360px;
    }
}



/* Groupe label (rond + lettre) */
.ekela-map-marker {
    pointer-events: none; /* le clic passe au path */
}

/* Cercle blanc */
.ekela-map-marker circle {
    fill: #ffffff;
    stroke: #000000;      /* ou jaune si tu préfères */
    stroke-width: 2;
}

/* Lettre */
.ekela-map-marker text {
    font-size: 22px;
    font-weight: 700;
    fill: #000000;        /* ou jaune */
    text-anchor: middle;
    dominant-baseline: middle;
}



@media (max-width: 768px) {
  
  .ekela-map-marker circle {
    -webkit-transform: scale(3);
    transform: scale(3);
  }
  
  .ekela-map-marker text {
    font-size: 60px;
  }
  
}
  
  
  