.leaflet-div-icon.flat-marker {
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

.text-marker-inner {
    width: 28px;
    height: 28px;
    background-color: #ec7a37;
    border: 2px solid #342616;
    border-radius: 50%;
    box-sizing: border-box;
    text-align: center;
    line-height: 24px;
    font-size: 13px;
    font-weight: bold;
    color: #342616;
}

/* Animation de l'ombre pour simuler une pulsation */
/* Centrage absolu avec marges négatives pour les anciens navigateurs */
.add-marker-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
    background-color: #00d86d;
    border-radius: 50%;
    box-sizing: border-box;
    -webkit-animation: pulse 1.5s infinite;
    animation: pulse 1.5s infinite;
}


@-webkit-keyframes pulse {
    0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 255, 51, 0.6); }
    70% { -webkit-box-shadow: 0 0 0 40px rgba(236, 122, 55, 0); }
    100% { -webkit-box-shadow: 0 0 0 0 rgba(236, 122, 55, 0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 51, 0.6);  }
    70% { box-shadow: 0 0 0 40px rgba(236, 122, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(236, 122, 55, 0); }
}

.consultation-marker {
    width: 4px;
    height: 4px;
    background-color: #181713;
    border: 1px solid #181713;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
    box-sizing: border-box;
}

.pin-container {
    background: transparent;
    border: none;
}

.pin-marker-inner {
    position: relative;
    width: 30px;
    height: 35px;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    cursor: pointer;
}


.pin-container:hover .pin-marker-inner {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}


