* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    height: 100%;
    margin: 0;
}

.mapConteneur {
    height: 100%;
    display: flex;
    justify-content: center;
    /* centre horizontalement */
    align-items: center;
    /* centre verticalement */
}

#map {
    height: 480px;
    width: 980px;
}


/*popup*/

.popupContainer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 400px;
    overflow: hidden;
    word-wrap: break-word;
}


.popupImage {
    width: 100px;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}


.TextFlex {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
}


.popupDesc {
    font-size: 12px;
    color: #555;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* gestion hamburger */

.hamburger {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1001;
    background-color: white;
    border: none;
    padding: 8px 12px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}


.leaflet-control-layers.hidden {
    display: none;
}

.leaflet-control-layers.offset-right {
    right: 60px !important;
}