/* Styles pour le partage de localisation */
.location-share-wrapper {
    margin: 20px 0;
    position: relative;
    display: inline-block;
}

.location-share-toggle {
    background: #2271b1;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.location-share-toggle:hover {
    background: #135e96;
}

.location-share-toggle::after {
    content: " ▼";
    font-size: 0.8em;
}

.location-share-dropdown {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 100;
    min-width: 200px;
    margin-top: 5px;
}

.location-share-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-share-dropdown li {
    padding: 0;
}

.location-share-dropdown a {
    display: block;
    padding: 8px 15px;
    color: #2271b1;
    text-decoration: none;
    transition: background 0.2s;
}

.location-share-dropdown a:hover {
    background: #f5f5f5;
}