:root {
    --primary-color: #0249c7;
    --hover-color: #E30A17;
    --city-bg: #afafaf;
    --text-white: #ffffff;
    --text-dark: #222222;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

h1 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.controls {
    margin-bottom: 30px;
}

button {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--text-white);
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #013694;
}

#map {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

#svg-turkey {
    width: 100%;
    height: auto;
}

#svg-turkey g g {
    cursor: pointer;
    transition: fill 0.2s ease;
}

#svg-turkey g g path {
    fill: var(--city-bg);
}

#svg-turkey g g:hover path {
    fill: var(--hover-color) !important;
}

/* Revealed state */
#svg-turkey g g.revealed path {
    fill: var(--primary-color) !important;
}

#tooltip {
    position: absolute;
    display: none;
    background: white;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 1000;
    font-size: 14px;
    color: var(--text-dark);
}

.city-label-group {
    pointer-events: none;
    user-select: none;
}

.city-label-plate {
    font-size: 14px;
    font-weight: bold;
    fill: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.city-label-name {
    font-size: 10px;
    fill: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}