/* Leaflet Property Map Styles */

.property-map-container {
  width: 100%;
  margin: 2rem 0;
}

.property-map {
  height: 500px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Leaflet popup styling */
.leaflet-popup-content {
  margin: 16px;
  line-height: 1.6;
}

.property-popup h3 {
  margin: 0 0 12px 0;
  color: #4c7c59;
  font-size: 18px;
}

.property-popup p {
  margin: 6px 0;
  font-size: 14px;
}

.property-popup strong {
  color: #333;
  font-weight: 600;
}

/* Leaflet controls */
.leaflet-control-layers {
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .property-map {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .property-map {
    height: 300px;
  }
}
