/* SVG Türkiye Haritası CSS */
.turkiye-haritasi {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.turkiye-haritasi svg {
    width: 100%;
    height: auto;
}

.turkiye-haritasi path {
    fill: #e9ecef;
    stroke: #ffffff;
    stroke-width: 1;
    transition: fill 0.3s ease;
    cursor: pointer;
}

.turkiye-haritasi path:hover {
    fill: #007bff;
}

.turkiye-haritasi path.selected {
    fill: #28a745;
}

.turkiye-haritasi path.active {
    fill: #dc3545;
}
