body {
    font-family: 'Poppins', sans-serif;
}


#logo_header {
    fill: #E91E63; /* Rose vif style "cœur" */
    font-size: 2em;
}

#map {
    height: 600px;
    margin-bottom: 2rem;           
    border-radius: 0.375rem; /* arrondis similaires à Bootstrap */
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 0.075);
}

.cke_notifications_area 
{
    display: none !important;
}
.custom-marker {
    background-color: #e91e63;
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
.card{
    min-height: 200px;	
}
label.required::after {
    content: ' *';
    color: red;
}

/* Cibler le <label> qui est juste avant un input.not-required */
div:has(input.not-required) > label::after {
    content: ' (optionnel)';
    font-size: 0.85em;
    color: gray;
}


