/* styles.css */

html, body, #map {
  height: 100%;
  margin: 0;
  font-family: 'sans-serif', Tahoma, Geneva, Verdana, sans-serif;
}

.leaflet-popup-content-wrapper {
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 6px;
  max-width: 420px;
}

.leaflet-popup-tip {
  background: rgba(255,255,255,0.95);
}

.popup-field {
  margin: 6px 0;
  padding: 6px 10px;
  background: rgba(255,255,255,0.8);
  border-left: 3px solid #aaa;
  border-radius: 6px;
  transition: transform 0.2s ease;
  font-size: 13px;
}

.popup-field:hover {
  transform: translateX(2px);
}

.field-label {
  font-weight: 700;
  font-size: 10px;
  color: #333;
  margin-bottom: 2px;
}

.field-value {
  color: #444;
  font-size: 13px;
}

.maps-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: #4285F4;
  text-decoration: none;
}

.maps-link:hover {
  text-decoration: underline;
}
