/* VIFPROTECT - Styles carte */

.vif-main-large {
    max-width: 100%;
    padding: 16px;
}

/* Filtres */
.vif-filtres-carte {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.vif-filtre-btn {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    color: #1c1c1e;
    font-size: 14px;
    font-family: inherit;
    white-space: nowrap;
    cursor: pointer;
}

.vif-filtre-btn.actif {
    background: #1c1c1e;
    color: #fff;
    border-color: #1c1c1e;
}

/* Actions */
.vif-carte-actions {
    margin-bottom: 12px;
}

.vif-geoloc-btn {
    background: #007aff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
}

.vif-geoloc-btn:active {
    background: #0056b3;
}

/* Carte */
.vif-map {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    border-radius: 12px;
    margin-bottom: 24px;
    background: #e0e0e0;
}

/* Popup Leaflet personnalise */
.leaflet-popup-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 12px;
}

.leaflet-popup-content strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.leaflet-popup-content a {
    color: #007aff;
    text-decoration: none;
}

/* Etat vide */
.vif-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (min-width: 768px) {
    .vif-main-large {
        max-width: 1000px;
        margin: 0 auto;
    }

    .vif-map {
        height: 70vh;
    }
}