#city-map {
    height: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.city-marker {
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease;
}

.city-marker:hover {
    transform: scale(1.1);
}

.city-pin {
    background: linear-gradient(135deg, #14BA08, #0F9606); /* green-500 gradient */
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin: 0 auto 5px;
}

.city-count {
    color: white;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.city-name {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Size variations */
.city-marker.size-xs .city-pin {
    width: 30px;
    height: 30px;
}

.city-marker.size-xs .city-count {
    font-size: 12px;
}

.city-marker.size-sm .city-pin {
    width: 40px;
    height: 40px;
}

.city-marker.size-sm .city-count {
    font-size: 14px;
}

.city-marker.size-md .city-pin {
    width: 50px;
    height: 50px;
}

.city-marker.size-md .city-count {
    font-size: 16px;
}

.city-marker.size-lg .city-pin {
    width: 60px;
    height: 60px;
}

.city-marker.size-lg .city-count {
    font-size: 18px;
}