body {
  margin: 0;
  background: #fffff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  /* overflow: hidden;  ← kaldırıldı */
}

#map {
  width: 100%;
  height: 100vh; /* Ekranın %90’ı kadar yükseklik */
  position: relative;
}


.country {
  stroke: #444;
  stroke-width: 0.4px;
  cursor: default;
  transition: fill 0.3s ease, stroke-width 0.2s ease;
}

.country.export {
  cursor: pointer;
  stroke: #222;
}

.country.export:hover {
  stroke-width: 1px;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
}

.active {
  stroke: #fff;
  stroke-width: 1.2px;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
}

.country-label {
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.country-label.show {
  opacity: 1;
}

/* Ülke listesi */
.country-list {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
}

.country-item {
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.country-item:hover {
  background: #f2f2f2;
}

.country-item.active {
  background: #ffcc00;
  color: #000;
  font-weight: bold;
}
