
#city-label {
  position: absolute;
  background-color: #001e5f;
  color: white;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 16px;
  pointer-events: none;
  display: none;
  z-index: 999;
}
.cities__turkey-map-city path {
  fill: #3f69b1;
  stroke: white;
  stroke-width: 0.5;
  transition: fill 0.2s ease;
  cursor: pointer;
}
.cities__turkey-map-city:hover path {
  fill: #5ba9f3;
}
.letter-button {
  padding: 8px 14px;
  border: 2px solid #2196F3;
  border-radius: 50%;
  background: white;
  color: #2196F3;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  margin: 5px;
}
.letter-button.active {
  background: #1565C0;
  color: white;
}
.city-button {
  padding: 10px 20px;
  background: #001e5f;
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
