#acn-world-map-container svg path,
#acn-world-map-container svg polygon,
#acn-world-map-container svg rect {
  fill: #e0e0e0; /* light grey */
}
#acn-world-map-container svg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#acn-country-content {
  /* margin-top: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border: 1px solid #ddd;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto; */
  display: none;
}

#acn-map-legend {
  margin: 1.5rem auto;
  max-width: 800px;
}
#acn-map-legend ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#acn-map-legend li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}
.legend-color {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 0.5rem;
  border-radius: 2px;
  border: 1px solid #ccc;
}
.acn-map-tooltip {
  position: absolute;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap;
  display: none;
}
.acn-map-tooltip {
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  max-width: 260px;
  font-size: 13px;
  line-height: 1.4;
  z-index: 9999;
}

.acn-map-tooltip .tooltip-title a {
  color: #ffeb3b;
  font-weight: 600;
  text-decoration: none;
}

.acn-map-tooltip .tooltip-title a:hover {
  text-decoration: underline;
}

.acn-map-tooltip .tooltip-excerpt {
  margin-top: 6px;
  font-size: 12px;
  color: #eee;
  white-space: normal;
  word-break: break-word;
}

.acn-post-search {
  min-width: 200px !important; /* ✅ ensures select2 box is never smaller */
}

.select2-container--default .select2-selection--single {
  min-width: 200px !important; /* ✅ applies to styled Select2 element */
}