.card-org{background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.1)!important;border-radius:8px;padding:16px;display:flex;flex-direction:column;position:relative;height:100%}.card-top{display:flex;align-items:center;margin-bottom:12px}.card-logo{width:100px;height:100px;object-fit:contain;margin-right:16px}.card-info{flex:1}.card-title{margin:0;font-size:1.4rem;font-weight:700;color:#5e3b9f}.card-location{font-size:1rem;padding-top:7px;color:#666}.location-logo{margin-right:6px;color:#888;font-size:1.2rem}.card-description{font-size:.9rem;color:#444;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}.qualiopi-logo{position:absolute;border-radius:8px;top:0;right:3px;height:50px;width:100px}@media (max-width:768px){.qualiopi-logo{height:30px;width:60px}}
#cityList {
    position: absolute;
    width: 100%; /* La liste prend maintenant la largeur du conteneur parent */
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 1000;
    display: none; /* Cache la liste initialement */
}

#cityList li {
    padding: 10px;
    cursor: pointer;
    color: black; /* Assurez-vous que le texte est noir ou d'une couleur visible */
}
#cityList li:hover {
    background-color: #f1f1f1;
}


.close-map-popup {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #555;
    cursor: pointer;
}


.city-map-popup {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    max-width: 600px;
    background: white;
    border: 1px solid #ddd;
    padding: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    z-index: 5;
    display: none;
    color: black;
    border-radius: 8px;
}

.close-map-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

#map {
    height: 200px;
    width: 100%;
    border-radius: 6px;
}
