/* Spotted Map CSS */
.spotted-map-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  margin: 24px 0;
}
.spotted-map-container {
  width: 100%;
  min-height: 400px;
}

/* Popup */
.spotted-popup-wrap .leaflet-popup-content-wrapper {
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.spotted-popup-wrap .leaflet-popup-content {
  margin: 0;
  width: 230px !important;
}
.spotted-popup-header {
  padding: 10px 14px;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.spotted-popup-header span { font-size: 18px; }
.spotted-popup-body {
  padding: 10px 14px 14px;
  background: white;
}
.spotted-popup-body p {
  margin: 0 0 10px;
  font-size: 12.5px;
  color: #444;
  line-height: 1.5;
}
.spotted-popup-btn {
  display: inline-block;
  color: white !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: opacity 0.15s;
}
.spotted-popup-btn:hover { opacity: 0.85; }

/* Legenda */
.spotted-map-legend {
  background: white;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  font-size: 12px;
  line-height: 1.8;
}
.spotted-map-legend strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: #222;
}
.spotted-map-legend div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #444;
}
.spotted-map-legend span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
