/*! SVG Türkiye Haritası | CSS | MIT Lisans | dnomak.com */

.svg-turkiye-haritasi {
  max-width: 100%;
  margin: 0 auto 30px;
  text-align: center;
}
.svg-turkiye-haritasi svg {
  width: 100%;
  height: auto;
}
.harita-wrap{ position:relative; }

.il-isimleri{
  position:absolute;
  z-index:9999;
  pointer-events:none;
}
.il-isimleri div{
  font-family: inherit;
  display:inline-block;
  background: var(--primary, #4f46e5);
  color:#fff;
  padding:8px 16px;
  border-radius:6px;
  font-size:14px;
  font-weight:600;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
#svg-turkiye-haritasi path {
  cursor: pointer;
  fill: #94a3b8;
  transition: fill 0.2s ease;
}
#svg-turkiye-haritasi path:hover {
  fill: var(--primary, #4f46e5);
}
#svg-turkiye-haritasi path.active,
#svg-turkiye-haritasi g.active path {
  fill: var(--primary, #4f46e5);
}
#guney-kibris,
#kuzey-kibris {
  pointer-events: none;
}
#guney-kibris path,
#kuzey-kibris path {
  fill: #e2e8f0 !important;
  cursor: default;
}
