/* Map popup / marker UI (was injected from mapview.js; keep in sync with Leaflet markup). */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.venue-popup {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.venue-popup .badge {
    font-size: 10px;
    margin-left: 5px;
}

.search-result-popup {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
}

.leaflet-popup-content {
    margin: 8px 12px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 4px;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tag-chip.more {
    background: #f1f3f5;
    color: #0f1f2f;
    font-weight: 600;
}
