.turkey-map {
  position: relative;
  width: 100%;
  min-height: 320px;
}

.turkey-map__svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 400;
  display: block;
}

.turkey-map__province {
  stroke: #ffffff;
  stroke-width: 0.6;
  transition: opacity 120ms ease-in-out, stroke-width 120ms ease-in-out;
  cursor: pointer;
}

.turkey-map__province:hover {
  opacity: 0.85;
  stroke: #4f46e5;
  stroke-width: 1.2;
}

.turkey-map__tooltip {
  position: absolute;
  pointer-events: none;
  background: #111827;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 10;
}

.turkey-map__legend {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
}

.turkey-map__legend-bar {
  display: inline-block;
  width: 120px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #e5e7eb, #4f46e5);
}

.turkey-map__error {
  text-align: center;
  padding: 40px;
  color: #9ca3af;
}
