.tr-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
}

#svg-turkey {
    width: 100%;
    height: auto;
}

#svg-turkey path {
    fill: #d3d3d3 !important; /* Şube olmayan şehirler: Gri */
    stroke: #ffffff !important;
    stroke-width: 1;
    transition: fill 0.3s ease;
    cursor: default;
}

#svg-turkey path.has-branches {
    fill: #800000 !important; /* Şube olan şehirler: Bordo */
    cursor: pointer;
}

#svg-turkey path.has-branches:hover {
    fill: #a00000 !important;
}

/* Tooltip Styles */
#tr-map-tooltip {
    position: fixed;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

#tr-map-tooltip .city-name {
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
}

#tr-map-tooltip .branch-count {
    font-size: 12px;
}
