/* Public NGO Partners Map Styles */

.public-ngo-map-container {
  width: 100%;
  height: 500px;
  min-height: 500px;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f0f4f8;
}

.public-ngo-map-container .map-loading,
.public-ngo-map-container .map-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 2rem;
  text-align: center;
  font-size: 16px;
  color: #666;
}

.public-ngo-map-container .map-loading {
  color: #0033a0;
}

.public-ngo-map-container .map-error {
  color: #dc3545;
  background-color: #fff;
}

/* NGO Map Popup Styles */
.ngo-map-popup {
  font-family: 'Roboto', sans-serif;
}

.ngo-popup-header {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}

.ngo-popup-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #0033a0;
  margin-bottom: 4px;
}

.ngo-popup-body {
  font-size: 14px;
  color: #333;
}

.ngo-popup-field {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ngo-popup-field i {
  color: #0033a0;
  margin-top: 2px;
  flex-shrink: 0;
}

.ngo-popup-field a {
  color: #0033a0;
  text-decoration: none;
}

.ngo-popup-field a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .public-ngo-map-container {
    height: 400px;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .public-ngo-map-container {
    height: 300px;
    min-height: 300px;
  }
}

