body {
  margin: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.svg-turkiye-haritasi {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.svg-turkiye-haritasi svg {
  width: 100%;
  height: auto;
}
.il-isimleri {
  position: absolute;
  z-index: 2;
}
.il-isimleri div {
  font-family: 'Open Sans';
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 8px 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

#svg-turkiye-haritasi path {
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Tüm iller gri */
#svg-turkiye-haritasi g path {
  fill: #52525b;
  opacity: 0.4;
  stroke: #3f3f46;
  stroke-width: 1;
}

#svg-turkiye-haritasi g path:hover {
  fill: #71717a;
  opacity: 0.6;
}

/* Sadece Tekirdağ turuncu */
#tekirdag path {
  fill: #ea580c !important;
  opacity: 0.7 !important;
  stroke: #ea580c !important;
  stroke-width: 2 !important;
}

#tekirdag path:hover {
  fill: #c2410c !important;
  opacity: 0.9 !important;
}

