/**
 * Custom Map Icons CSS
 * Styles for map markers and location icons
 */

/* Custom map markers */
.map-marker {
    background-color: transparent;
}

.map-marker-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    font-size: 20px;
    border: 2px solid #4a89dc;
    transition: all 0.2s ease;
}

.map-marker-icon:hover {
    transform: scale(1.1);
    border-color: #3a79cc;
}

/* Category emoji styling */
.category-emoji {
    font-size: 1.2em;
    line-height: 1;
}

/* Location list category badges */
.location-categories .badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85em;
    padding: 0.3em 0.6em;
    border-radius: 20px;
}

/* Map popup styling */
.leaflet-popup-content {
    min-width: 200px;
}

.map-popup {
    padding: 5px;
}

.map-popup h5 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.map-popup .category-badge {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-bottom: 8px;
}

.map-popup .address {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.map-popup .address i {
    color: #4a89dc;
} 