/* İnteraktif Harita Stilleri */
#turkey-map path {
    fill: #0072ce; /* Haritanın varsayılan rengi */
    stroke: #ffffff;
    stroke-width: 1;
    transition: fill 0.3s ease;
}

#turkey-map path:hover {
    fill: #fec20f; /* Vurgu rengi - JS ile de ayarlanıyor */
    cursor: pointer;
}

#map-tooltip {
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    position: absolute;
    display: none;
    pointer-events: none;
    z-index: 1000;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#map-tooltip .tooltip-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}

#map-tooltip ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#map-tooltip ul li {
    padding: 4px 0;
}

#map-tooltip .no-clubs {
    color: #ccc;
} 