/**
 * Estilos para el mapa front-end de LM MapMarker
 */

#lm-mapmarker-container {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}

.leaflet-popup-content {
    margin: 15px;
    max-width: 300px;
}

.leaflet-popup-content h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.leaflet-popup-content p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.leaflet-popup-content img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 4px;
    display: block;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .leaflet-popup-content {
        max-width: 250px;
    }
    
    .leaflet-popup-content img {
        max-width: 150px;
        max-height: 150px;
    }
}
